Jump to content

commy2

Member
  • Content Count

    413
  • Joined

  • Last visited

  • Medals

Community Reputation

188 Excellent

4 Followers

About commy2

  • Rank
    Gunnery Sergeant

Recent Profile Visitors

1696 profile views
  1. Or just give a setter and getter to force the ragdoll... But that has been requested since Alpha...
  2. 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
  3. 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).
  4. "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.
  5. commy2

    BWMod

    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.
  6. "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.
  7. 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.
  8. You win. [_object actionParams _id] param [0, []] params ["_script", "_arguments", ...];
  9. Not even newly added commands are consistent. It just gets worse every patch. Thankfully we have param(s). [_object actionParams _id] param [0, []]
  10. All intersect commands before lineIntersectsSurfaces fail under water.
  11. 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.
  12. The very strangely named command https://community.bistudio.com/wiki/sunOrMoon is broken. It only reports 0 and 1 now, nothing in between anymore.
  13. You actually thought this update to the debug console was a good idea, didn't you?
  14. You need the latest version of the game. A cracked version is not supported. Please buy the game.
  15. 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.
×