compileFinal: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 6: Line 6:
|eff=local|=
|eff=local|=


|0.50|= Game version
|0.56|= Game version
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 13:23, 9 May 2013

Hover & click on the images for description

Description

Description:
Compile expression and makes it final, preventing it from:
Groups:
Uncategorised

Syntax

Syntax:
Code = compileFinal expression
Parameters:
expression: String
Return Value:
Code

Examples

Example 1:
myCode = compileFinal "a = a + 1"; call myCode;
//--- Repeated compile won't have any effect myCode = compileFinal "a = a + 2";
//--- Duplicate code will be final as well myDuplicateCode = myCode;

Additional Information

See also:
compilecallspawn

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section