Inkompetent – User talk
Jump to navigation
Jump to search
Inkompetent (talk | contribs) (Gathered know-how) |
Inkompetent (talk | contribs) |
||
Line 9: | Line 9: | ||
Example: ''if ((nr >= 0) and {alive(someArray select nr)}) then {}:'' | Example: ''if ((nr >= 0) and {alive(someArray select nr)}) then {}:'' | ||
'''CONFIGS''' | |||
http://community.bistudio.com/wiki/6thSense.eu:CG |
Revision as of 14:55, 13 June 2012
Gathered know-how
Proper use of IF-function:
Only ever use one single check per IF-function, because SQF doesn't do lazy evaluations. ALL of the checks in an IF-clause will be tested, even if the first one and all before the current tested one has failed.
NOTE EXCEPTION: Code can be used for lazy evaluation since build 93640.
Example: if ((nr >= 0) and {alive(someArray select nr)}) then {}:
CONFIGS