compileFinal: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Note about publicVariable)
m (Corrected note date)
Line 40: Line 40:
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->


<dd class="notedate">Posted on 14 August, 20123
<dd class="notedate">Posted on August 14, 2013
<dt class="note">[[User:AgentRev01|AgentRev]]<dd class="note">
<dt class="note">[[User:AgentRev01|AgentRev]]<dd class="note">
When broadcasting a compileFinal'ed variable using [[publicVariable]] or its variants, the variable also becomes final on the other client(s) and/or the server.
When broadcasting a compileFinal'ed variable using [[publicVariable]] or its variants, the variable also becomes final on the other client(s) and/or the server.

Revision as of 18:50, 17 August 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

Posted on August 14, 2013
AgentRev
When broadcasting a compileFinal'ed variable using publicVariable or its variants, the variable also becomes final on the other client(s) and/or the server.

Bottom Section