Declaring global variables in Arma 3 scripting.

Declaring a global variable in Arma 3 in very easy, this one is for defining the max radius of a battle zone. Declare it at the initial phase of your mission scripting like this. missionNamespace setVariable [’PARAMS_AOSize’,1000,FALSE]; // Radius of main AO.missionNamespace setVariable [‘PARAMS_AOSize’,1000,FALSE]; // Radius of main AO. Then it may be used where … Read more