-
Content Count
141 -
Joined
-
Last visited
-
Medals
Community Reputation
33 ExcellentAbout Drift_91
-
Rank
Sergeant
Profile Information
-
Gender
Male
-
Location
Ontario, Canada
Contact Methods
-
Biography
Casual gamer, Internet addict, IT enthusiast and professional procrastinator.
-
Twitter
Drift_91
-
Youtube
UCBoJsiTpAzETog8ewj0u5wQ
-
Steam url id
76561197996287940
-
Reddit
Drift_91
Recent Profile Visitors
-
Hi, there seems to be a mod conflict between 3CB Factions and ALiVE's CQB module. From what I'm reading on the Workshop page for 3CB Factions, there's some kind of loadout randomization script, which I suspect is the cause. Basically the majority of the AI spawned by the CQB module from ALiVE will either be the wrong faction, one from 3CB Factions, or they'll be the correct unit (determined via "systemChat str typeOf _unit") but have a loadout from a 3CB Factions unit. I'm also going to let the ALiVE devs know about this and I'll leave it up to you guys to determine which mod is at fault. Thank you for your time and hopefully it's an easy fix.
-
Get rid of side Kill Counter on HUD
Drift_91 replied to MisterCat's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Apologies for digging up an old thread, but it seems to be impossible to remove that particular HUD element. After executing both of the below bits of code in the debug console the little NATO symbol with the kill count remains on the screen. { {_x ctrlShow false;} forEach allControls _x;} forEach allDisplays; { {_x ctrlSetFade 1; _x ctrlCommit 1;} forEach allControls _x;} forEach allDisplays; Is there some other type of GUI element I should be searching for? If not, I'm thinking of posting on the feedback tracker about the inability to remove it via scripting. I still haven't figured out exactly what module adds it yet, so hopefully I can mod it out with some configs. -
Alex Vestin's Multicam (HD quality template files)
Drift_91 replied to AlexVestin's topic in ARMA 2 & OA - ADDONS & MODS: DISCUSSION
@AlexVestin Sorry to bump this old thread, but the download links seem to be 404'd thanks to Dropbox disabling everyone's public folder back in 2017. Would it be possible to get new links? Thanks. -
xArmalloc - Custom memory allocator for Arma 3
Drift_91 replied to spektykles's topic in ARMA 3 - COMMUNITY MADE UTILITIES
@spektykles Did you ever get around to working on the source code? I kinda want to look at it to see what you've changed and possibly make some customizations. Btw, is there a check for admin perms for the large pages? I've found a way to get the "lock pages in memory" permission to not require a process to be run as admin, by granting the perm to the group "everyone" in secpol.msc. But I can't test because my framerate seems to stay the same whether large pages are turned on or off and whether I run as admin or not. Makes me question if the large pages are even working even with admin. I ask because I had to customize Blub's source code to remove such a check from his malloc to get the trick I mentioned to work. I'm also curious what you've changed to optimize it for either Intel and AMD systems. Is it a simple change to the project in Visual Studio, like the AVX instruction set, or something you've altered in the code? -
Hey, what happened to your workshop upload of the Advanced Urban Rappelling mod? Did you get hit by a copyright troll or what?
-
Hi, I switched all my workshop items to private after a so called 'intellectual property' dispute on discord with BI. As I strongly disagree on the IMHO much too extensive nature of the current 'intellectual property' laws, I decided to go in private and no longer be involved to a society following rules empowering thought control. This society includes everyone. Including all people on steam.
I know how much work coding is. And I know that hard working people need to be payed and have the credits they deserve. But how IP is handled atm, is too much of everything.I'm sure people will find alternatives for the insignificant stuff I do.
Sorry for any inconvenience.
-
-
rksl RKSL Attachments Pack
Drift_91 replied to da12thMonkey's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Valve really need to stop with this crap. They need to start taking legal action against the copyright trolls or find some way to block them from making reports if they've made false reports in the past. As far as I know you don't even need to have an account to make a report, otherwise Valve could start issuing community bans to people who make false reports as sufficient recourse so people would have too much at stake to risk it over trolling.- 98 replies
-
- scopes
- attachments
-
(and 5 more)
Tagged with:
-
Drift_91 started following MarkerLights Blink Rate?, Murshun Easy Way Out, AI VEHICLE RESPAWN script, an alternative for BI module and and 1 other
-
@rebelvg I'm trying to figure out why the Steam Workshop upload doesn't seem to be accessable: https://steamcommunity.com/sharedfiles/filedetails/?id=1457208234 Not the usual error I get when someone takes their own mod off the workshop or it gets a DMCA takedown, so I'm guessing you didn't take it down yourself. Normally I'd assume it's just Valve being incompetent like usual, but it's been down all day which is unusual for a temporary error. Did Valve deem it a violation of the AUP or something? [_unit] spawn murshun_easywayout_fnc_suicide_AI; Where '_unit' is the actual AI unit. So in the init box of an AI unit in Zeus you'd replace '_unit' with '_this'. For future reference, in an init box '_this' is usually what you use to indicate the object that the init box belongs to. I believe if you mouse over the text header for the text box it'll tell you what '_this' and any other applicable variables would refer to. '_unit' most of the time is just a filler used to tell you where to put the name of your unit, since it's not always going to be '_this' in every situation. For example if I wanted to make every unit on the map simultaneously suicide I could do something like this: { [_x] spawn murshun_easywayout_fnc_suicide_AI; } forEach allUnits;
-
@Tilion is there any way to set "blinking = true" to false via a command such as setVariable? I'm trying to avoid completely overwriting the class in my description.ext (if that's even possible to begin with). I'm starting to think I may be stuck with having to make my own mod that adds a separate config/class for a static version of the lights.
-
HandleDamage Event Handler Explained
Drift_91 replied to ShadowRanger24's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@pierremgi Thank you. Never actually thought to test firing a weapon at it while it was in-flight. That actually clears up my suspicion that it was intentional. If anyone is interested I've filed a bug in the feedback tracker. https://feedback.bistudio.com/T139722 -
MCC Sandbox 3 - Dynamic mission creating tool for ArmA 3
Drift_91 replied to shay_gman's topic in ARMA 3 - ADDONS & MODS: COMPLETE
@shay_gman I don't know if you check your GitHub repository's issues or not so I'm just letting you know here about a mission-breaking bug I found. https://github.com/shaygman/MCC_sandbox_modDev/issues/60 I'm not sure if this is an issue specific to me or not, but I've experienced it across two servers I run and several missions I've made. It happens both in Dedicated MP and Eden MP Preview. I'm not trying to rush you or anything. Just want to make sure you know about it for when you have time to work on it. It is kind of a serious bug though since it completely messes up the way missions initialize. -
Portable Helipad Lights - script or init to make them burn steady?
Drift_91 replied to Drift_91's topic in ARMA 3 - MISSION EDITING & SCRIPTING
So I've been looking into this again. I was looking at the lights in the config browser and this thread. Is there any way to set the "blinking = true" variable to false via something along the lines of "this setVariable ["blinking",false,true]"?- 3 replies
-
- portable helipad light
- portable helipad lights
- (and 3 more)
-
Drift_91 started following vanschmoozin
-
units SSF Factions and Faction Overhauls
Drift_91 replied to jarrad96's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Hey, I'm not sure if you saw my comment on the workshop upload of [SFF-R] Islamic State. I was wondering, would it would be possible to get the mods signed so they can be used in multiplayer? I've used your Islamic State mod before and was really disappointed when I realized I couldn't use it on the signature-enforced server I'm running right now. Also I'm eager to see how the Bundesgrenzschutz mod in your last post turns out. Plus I have a couple of friends who will be ecstatic when that releases.- 874 replies
-
- factions
- special forces
- (and 11 more)
-
HandleDamage Event Handler Explained
Drift_91 replied to ShadowRanger24's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@HazJ I'm not trying to disable damage upon ground impact, I'm trying to limit it. In Arma if you so much as clip your skids on the ground at 50KM/h, "BOOM!" everyone's dead. I'm trying to override the default behaviour so that everyone gets injured by the impact and the aircraft is destroyed, but it doesn't burst into a ball of flames and kill everyone. So does anyone know why that EH isn't working? Should I make a bug report? -
Dedicated Server Issue "Server Can Not Transmit All Data"
Drift_91 replied to S.Newbould's topic in ARMA 3 - SERVERS & ADMINISTRATION
Ah alright, that makes more sense. -
Dedicated Server Issue "Server Can Not Transmit All Data"
Drift_91 replied to S.Newbould's topic in ARMA 3 - SERVERS & ADMINISTRATION
@Dedmen, to my understanding it's a character limitation of the mod names in the mod.cpp files of all the mods combined, not the actual folder names. This might explain why it isn't working for @S. Bacon. Here's a ticket on the feedback tracker that explains it in detail: https://feedback.bistudio.com/T123655 @Gunter Severloh, what Dedmen is trying to say is that the OP is looking for a way to automatically load the mod list via the launcher. What you were suggesting completely bypasses the launcher's automatic loading of mods, defeating the purpose.