Archives for: October 2009
ArmA Script Recoded 1.3
Since the last mention of ArmA Script a lot has changed:
We have minor improvements at the styling of SQF. Then there is a new menu point to display a variable via hint, *Chat or diag_log.
But one of the major improvements is the support for mike… more »
ArmA Script Recoded
ArmA Script is a plugin for Notepad++ which adds support for SQF.
Its supports highlighting of local or global variable, functions and more. It adds folding, including folding of arrays.
But it didn't support the new commands of ArmA II and since the… more »
Changelog 11/10/2009
RTE Capture:1.54
ArmA II
ION_RTE:514
ION_RTE_Dta:514
Armed Assault
ION_RTE:508
ION_RTE_Dta:441
RTE Capture:Added recursive search for mod folders. more »
New to ArmA 2: elseif
elseif? We already have else if!
More or less. We have else { if ... } which is different. Let's look at an example:
if (Area1Clear) then {
Convoi_Next_Waypoint = Area1;
} else {
if (Area2Clear) then {
Convoi_Next_Waypoint = Area2;
} else… more »
New to ArmA 2: Threads
Threads in ArmA II? Yeah!Yeah... I guess it is more an accident. It's an effect of the 3ms break. The engine has an internal FIFO stack (first in - first out) where all the scripts started with spawn, execVM and FSM are listed. When a script takes mo… more »
