-
Content Count
413 -
Joined
-
Last visited
-
Medals
Everything posted by commy2
-
CBA - Community Base Addons - ARMA 3
commy2 replied to vipermaul's topic in ARMA 3 - ADDONS & MODS: COMPLETE
That RPT file on the pastbin is missing some lines at the top and inbetween. Please upload the full one, otherwise I can't help. -
CBA - Community Base Addons - ARMA 3
commy2 replied to vipermaul's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Use 3.1.2, which fixes that error. If it doesn't work on your Linux server, find out why or upload the RPT file so I can take a look. -
smallarms NIArms Release Thread
commy2 replied to toadie2k's topic in ARMA 3 - ADDONS & MODS: COMPLETE
@Robalo I wrote a possible solution in the CBA private Slack. -
ACE3 - A collaborative merger between AGM, CSE, and ACE
commy2 replied to acemod's topic in ARMA 3 - ADDONS & MODS: COMPLETE
>cant you add str(side player) == 'GUER' in the function that you want done only by independent? Like this No. -
They all persist after respawn in Arma 3 and they stay on the corpse too, although "Respawn" and "Killed" obviously won't be triggered again.
- 1481 replies
-
- 2
-
- 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
Vanilla. -
Are we allowed to delete blatantly false comments on the scripting wiki? E.g. this comment from disat: https://community.bistudio.com/wiki/getPos >This command returns a PositionAGL. Apparently, Position and PositionAGL are the same thing. getPos reports AGLS, not AGL. He left the same comment on setPos and there exists this misconception that setPos and getPos actually use the same reference system for the z-axis, which they don't. A clean wiki could avoid such misconceptions.
- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with:
-
We take PR's if you want to try your luck with it. https://git.koffeinflummi.de/bwmod-team/bwa3-public/merge_requests
-
Seems like such a simple thing is still to complicated. If only Arma were open source this could've been fixed years ago and without much effort to be honest.
- 1481 replies
-
- 2
-
- branch
- development
-
(and 2 more)
Tagged with:
-
>Does defining limitsArrayTop[] and limitsArrayBottom[] polygon not work on helicopter turrets then? Nope. As you said, it's for FFV turrets.
-
Nah. There only is a min and max elevation value for guns on helicopters in config and we can't determine that as a function of the azimuth. I'd rather have it go up too much in this rare case than limiting the inclination when the gun is facing forward.
-
This is all you need. Replace anything that starts with "bwa3_" (except for "BWA3_Leopard_base") with whatever you have. class BWA3_Leopard_base; class BWA3_Leopard2A6M_Tropen: BWA3_Leopard_base { _generalMacro = "BWA3_Leopard2A6M_Tropen"; author = "$STR_BWA3_Author"; scope = 2; displayName = "$STR_BWA3_Leopard2A6MTropenName"; side = 1; faction = "BWA3_Faction"; crew = "BWA3_Crew_Tropen"; editorPreview = "\bwa3_leopard2a6m\editorpreview\BWA3_Leopard2A6M_Tropen.jpg"; //vehicleClass = "BWA3_Armored_Tropen"; //editorSubcategory = "BWA3_EdSubcat_Tanks_Tropen"; hiddenSelectionsTextures[] = { "\bwa3_leopard2a6m\data\bwa3_leopard2a6m_wanne_tropen_co.paa", "\bwa3_leopard2a6m\data\bwa3_leopard2a6m_turm_tropen_co.paa", "\bwa3_leopard2a6m\data\bwa3_leopard2a6m_fahrwerk_tropen_co.paa", "\bwa3_leopard2a6m\data\bwa3_leopard2a6m_decals_tropen_ca.paa", "\bwa3_leopard2a6m\data\bwa3_leopard2a6m_netz_tropen_ca.paa", "#(argb,8,8,3)color(0,0,0,0,CO)", "#(argb,8,8,3)color(0,0,0,0,CO)", "#(argb,8,8,3)color(0,0,0,0,CO)", "#(argb,8,8,3)color(0,0,0,0,CO)", "#(argb,8,8,3)color(0,0,0,0,CO)", "#(argb,8,8,3)color(0,0,0,0,CO)", "#(argb,8,8,3)color(0,0,0,0,CO)", "#(argb,8,8,3)color(0,0,0,0,CO)", "#(argb,8,8,3)color(0,0,0,0,CO)", "#(argb,8,8,3)color(0,0,0,0,CO)" }; forceInGarage = 1; };
-
ACE3 - A collaborative merger between AGM, CSE, and ACE
commy2 replied to acemod's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Bug reports go on the issue tracker. Forum posts are mostly ignored. -
The load(Abs) commands seem to be broken. They count loaded magazines twice. Extreme example: // getUnitLoadout player // loadAbs player // no PCML missile [[],["launch_NLAW_F","","","",[],[],""],[],[],[],["B_AssaultPack_rgr_LAT",[]],"","",[],["","","","","",""]] 120 // 1 PCML missile in backpack [[],["launch_NLAW_F","","","",[],[],""],[],[],[],["B_AssaultPack_rgr_LAT",[["NLAW_F",1,1]]],"","",[],["","","","","",""]] 200 // 1 loaded PCML missile [[],["launch_NLAW_F","","","",["NLAW_F",1],[],""],[],[],[],["B_AssaultPack_rgr_LAT",[]],"","",[],["","","","","",""]] 280
- 1481 replies
-
- 3
-
- branch
- development
-
(and 2 more)
Tagged with:
-
So when does the event handler come that fires when the player changes the actual view and how will it be named? (GUNNER -> INTERNAL -> EXTERNAL etc.)
- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with:
-
ACE3 - A collaborative merger between AGM, CSE, and ACE
commy2 replied to acemod's topic in ARMA 3 - ADDONS & MODS: COMPLETE
- Every module is a game object. The more of them, the worse performance gets, even though the effect of one alone is probably not measureable. - Every module runs a small script at mission start. More code to execute = slower mission start. - Modules can become outdated when their parameters are changed in an update, which can lead to script errors and you having to delete and replace the module. - Modules are a PITA to handle, because you have to use the slow editor to change them. A .hpp file can be edited with text editors. - Many settings don't have a module. -
ACE3 - A collaborative merger between AGM, CSE, and ACE
commy2 replied to acemod's topic in ARMA 3 - ADDONS & MODS: COMPLETE
There is a module / setting that must be used to enable the surrendering feature. AI won't shoot you when surrendered, so it's disabled by default, as it would break missions. -
It happens in vanilla, because the same bug applies, as I wrote and reported on the feedbacks, to addWeaponCargo(Global) which Zeus uses. Every MineDetector added by a Zeus is affected by this. When scripting yourself you can always use addItemCargo(Global) instead, which adds a working version of the item.
- 1481 replies
-
- 1
-
- branch
- development
-
(and 2 more)
Tagged with:
-
The garbage collector is too eager regarding ground weapon holders. Using: test_gwh = "groundweaponholder" createVehicle position player; test_gwh addItemCargoGlobal ["FirstAidKit", 1]; clearItemCargoGlobal test_gwh; test_gwh addItemCargoGlobal ["FirstAidKit", 1]; does delete the ground weapon holder one frame later, despite there being one item in the cargo. I know this example does not make practical sense, but it's the easiest way to reproduce. If you're trying to manipulate a ground weapon holder currently, you have to always add a safety item which is later removed in case the ground weapon holder is empty at any point in your script. This does apply to unscheduled environment too, so no fluke.
- 1481 replies
-
- 4
-
- branch
- development
-
(and 2 more)
Tagged with:
-
"setUnitLoadout" suffers from the same problem "addWeaponCargo(Global)" does regarding mine detectors - the mine detector is considered a secondary weapon / rocket launcher. player setUnitLoadout [[],["MineDetector","","","",[],[],""],[],[],[],[],"","",[],["","","","","",""]] Note that this version of the mine detector does not stack with the regular ones, does not detect mines as far as I can tell and takes up no space in cargo / has no "mass". Btw. there seems to be no way to resize images on the forum.
- 1481 replies
-
- 1
-
- branch
- development
-
(and 2 more)
Tagged with:
-
Cleaning up variables from object namespace is broken. works correctly: missionNamespace setVariable ["testvar", nil]; [missionNamespace getVariable "testvar", "testvar" in allVariables missionNamespace] // reports: [<null>,false] but does not work for: player setVariable ["testvar", nil]; [player getVariable "testvar", "testvar" in allVariables player] // reports: [any,true] There is no need for this. The variable name should be removed from the object variable hash.
- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with:
-
ACE3 - A collaborative merger between AGM, CSE, and ACE
commy2 replied to acemod's topic in ARMA 3 - ADDONS & MODS: COMPLETE
CBA_missionTime is the same as time, but synched when joing a MP game and resumed when loading a savegame. It's also based on the machine clock and not on FPS / game speed, so it stays synched for hours on all machines. It's just a less shitty, MP and JIP compatible version of the vanilla "time" command. -
ACE3 - A collaborative merger between AGM, CSE, and ACE
commy2 replied to acemod's topic in ARMA 3 - ADDONS & MODS: COMPLETE
ACE should work after loading a save game without the need for "reinitialization". What exactly is not working? Are you trying with only CBA and ACE? -
The inventory commands don't report the integrated items. player addHeadgear "H_PilotHelmetFighter_B"; hint format ["hmd: %", hmd player]; // expected: 'hmd: Integrated_NVG_F', actual: 'hmd: ' Major inconvenience. The slot is blocked and the command should therefore report the integrated item.
- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with:
-
Any chance we can get make the "count" parameter in "array select []" optional? _string select [3] works, but you have to write: _array select [3, 1E7] otherwise it complains about a missing parameter.
- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with: