How to spawn a nuke explosion with a script in Arma 3 with RHS.

This is how to spawn a nuke explosion with a script in Arma 3. This only does damage in a small radius, but it still is a lot of fun. [getMarkerPos "respawn_west", 500] call rhs_fnc_ss21_nuke;[getMarkerPos "respawn_west", 500] call rhs_fnc_ss21_nuke; This section of code will spawn a HE SCUD missile on a certain location defined by … Read more

How to spawn RHS or Project OPFOR units with the Arma 3 Spawn AI module.

The spawn AI module for Arma 3 is very good for spawning AI in a mission and having them capture sectors automatically, but how do you spawn AI from mods? This is easy. Just use this code below in the initialization section of the module. this setVariable[ "side", "East", true ]; this setVariable[ "faction", "LOP_ChDKZ", … Read more

How to get RHS units to garrison buildings in Arma 3.

The simple CBA_fnc_taskDefend function will enable RHS Escalation units to garrison buildings. The Community Base Addons mod is required for this function. Just place this code in the init of each group leader. [this] call CBA_fnc_taskDefend;[this] call CBA_fnc_taskDefend; This is another example. The troops will head towards the marker named ‘hq’ and occupy buildings around … Read more