compileFinal: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Bot: Replacing category Scripting Commands Arma 3 with Arma 3: Scripting Commands) |
||
Line 51: | Line 51: | ||
<h3 style="display:none">Bottom Section</h3> | <h3 style="display:none">Bottom Section</h3> | ||
<!-- CONTINUE Notes --> | <!-- CONTINUE Notes --> | ||
<dl class="command_description"> | <dl class="command_description"> | ||
Line 67: | Line 60: | ||
</dl> | </dl> | ||
<!-- DISCONTINUE Notes --> | <!-- DISCONTINUE Notes --> | ||
[[Category:Scripting Commands|COMPILE]] | |||
[[Category:Command Group: Variables|{{uc:{{PAGENAME}}}}]] | |||
[[Category:Command Group: System Commands|{{uc:{{PAGENAME}}}}]] | |||
[[Category:Arma 3: Scripting Commands]] | |||
[[Category:Arma 3: New Scripting Commands List|{{uc:{{PAGENAME}}}}]] |
Revision as of 17:04, 3 December 2018
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 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. Also, compileFinal does not prevent event handlers from being removed or overwritten.
Bottom Section
- Posted on May 27, 2017 - 11:58 (UTC)
- IT07
- in ArmA 3 1.70.141838, compileFinal also works for profileNamespace and uiNamespace. But be careful with that.