-
Content Count
413 -
Joined
-
Last visited
-
Medals
Community Reputation
188 ExcellentAbout commy2
-
Rank
Gunnery Sergeant
Recent Profile Visitors
1821 profile views
-
CatBook-Yi23332 started following commy2
-
Or just give a setter and getter to force the ragdoll... But that has been requested since Alpha...
- 1481 replies
-
- 4
-
- branch
- development
-
(and 2 more)
Tagged with:
-
Those overwrite the EventHandlers class instead of inheriting it from their parents, which would break the Extended EventHanders component of CBA_A3. Therefore I have to add back the CBA_Extended_EventHandlers class. Sucks that the editor makes a dependency out of this, but that is a problem of 3den and nothing the community can fix. Always disable all mods if you want to make a mission that should work without mods. https://github.com/CBATeam/CBA_A3/blob/master/addons/xeh/CfgVehicles.hpp#L229-L316
-
CBA - Community Base Addons - ARMA 3
commy2 replied to vipermaul's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Ref: https://github.com/CBATeam/CBA_A3/issues/745 It's not a problem with CBA as far as I can tell, because this is a function by BI and never used in CBA (anymore since a long time). -
commy2 started following Script alternative to ALiVE?
-
ACE3 - A collaborative merger between AGM, CSE, and ACE
commy2 replied to acemod's topic in ARMA 3 - ADDONS & MODS: COMPLETE
"class Men" has no interactions actions class, because it includes animals. AT weapon buddy reload doesn't make much sense on snakes. The classes are in CAManBase, Car, Tank, Motorcycle, Plane, Helicopter, Ship_F etc. You only need to inherit from those when you want to add a action to a specific tank class. Or you just use the functions, which is easier, but can't overwrite afaik. -
No. I have some scripts for it (proof of concept for the functionality / scripting) on my hard drive, but no one made a model, party because there is no suitable references (high quality pictures of details - not images from google) available.
-
ACE3 - A collaborative merger between AGM, CSE, and ACE
commy2 replied to acemod's topic in ARMA 3 - ADDONS & MODS: COMPLETE
"Override" as in disable? class CfgVehicles { class Man; class CAManBase: Man { class ACE_Actions { class ACE_MainActions { class ACE_RemoveHandcuffs { condition = "(false)"; }; }; }; }; }; The parenthesis are there to prevent overzealous tools from replacing the boolean string with the number zero. If you want to get fancy, you can try delete: class CfgVehicles { class Man; class CAManBase: Man { class ACE_Actions { class ACE_MainActions { delete ACE_RemoveHandcuffs; }; }; }; }; The config is here: https://github.com/acemod/ACE3/blob/master/addons/captives/CfgVehicles.hpp#L1-L26 and luckily there isn't any base classes to inherit from, except for "Man". Make sure to disable "Rebuild CfgPatches" if your tool has that. You got it correct yourself (load after "ace_captives"), and that option is a huge pitfall. -
Depends on what you're doing with your script. I'm sure Quiksilver has a good reason why he wants it to be an empty array. This technique is used in ACE3 everywhere. private _assignedItems = getUnitLoadout _unit param [9, ["","","","","",""]]; // ["ItemMap","ItemGPS","ItemRadio","ItemCompass","ItemWatch","NVGoggles"] getAllHitPointsDamage _vehicle param [0, []] fullCrew [_vehicle, "commander", true] apply {_x select 3} param [0, []] (assignedVehicleRole ACE_player) param [1, []] etc. etc.
- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with:
-
You win. [_object actionParams _id] param [0, []] params ["_script", "_arguments", ...];
- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with:
-
Not even newly added commands are consistent. It just gets worse every patch. Thankfully we have param(s). [_object actionParams _id] param [0, []]
- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with:
-
All intersect commands before lineIntersectsSurfaces fail under water.
- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with:
-
I don't want to know when it becomes day/night. I used the command as approximation of know how bright it is. Now it's useless and I have to hack something together. It broke ACE maps being darker at dusk / dawn. Now it's either bright or very dark.
- 1481 replies
-
- 1
-
- branch
- development
-
(and 2 more)
Tagged with:
-
The very strangely named command https://community.bistudio.com/wiki/sunOrMoon is broken. It only reports 0 and 1 now, nothing in between anymore.
- 1481 replies
-
- 5
-
- branch
- development
-
(and 2 more)
Tagged with:
-
You actually thought this update to the debug console was a good idea, didn't you?
- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with:
-
CBA - Community Base Addons - ARMA 3
commy2 replied to vipermaul's topic in ARMA 3 - ADDONS & MODS: COMPLETE
You need the latest version of the game. A cracked version is not supported. Please buy the game. -
CBA - Community Base Addons - ARMA 3
commy2 replied to vipermaul's topic in ARMA 3 - ADDONS & MODS: COMPLETE
There is no way to detect input from controllers. BI would have to provide API for that first. The only other way would be a DLL extension. I'm not sure that that is desirable for CBA considering the problems with Battle Eye etc.