compileFinal: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
AgentRev01 (talk | contribs) m (Note about publicVariable) |
||
Line 39: | Line 39: | ||
<dl class="command_description"> | <dl class="command_description"> | ||
<!-- Note Section BEGIN --> | <!-- Note Section BEGIN --> | ||
<dd class="notedate">Posted on 14 August, 20123 | |||
<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. | |||
<!-- Note Section END --> | <!-- Note Section END --> |
Revision as of 23:35, 14 August 2013
Description
- Description:
- Compile expression and makes it final, preventing it from:
- repeated compile or compileFinal
- removal by nil
- remote rewrite using publicVariable, publicVariableClient and publicVariableServer
- Groups:
- Uncategorised
Syntax
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
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 14 August, 20123
- 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.