compileFinal: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\{\{GameCategory\|(arma[0123])\|New[ _]Scripting[ _]Commands[ _]List\}\}" to "{{GameCategory|$1|New Scripting Commands}}") |
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
||
Line 1: | Line 1: | ||
{{Command|Comments= | {{Command|Comments= | ||
| arma3 |Game name= | | arma3 |Game name= | ||
Line 7: | Line 6: | ||
|gr1= Strings |GROUP1= | |gr1= Strings |GROUP1= | ||
| Compile expression and makes it final, preventing it from: | | Compile expression and makes it final, preventing it from: | ||
Line 15: | Line 13: | ||
{{Informative | This feature is only available in retail version of Arma 3}} | {{Informative | This feature is only available in retail version of Arma 3}} | ||
|DESCRIPTION= | |DESCRIPTION= | ||
|'''compileFinal''' expression |SYNTAX= | |'''compileFinal''' expression |SYNTAX= | ||
Line 22: | Line 19: | ||
| [[Code]] |RETURNVALUE= | | [[Code]] |RETURNVALUE= | ||
|x1= <code>myCode <nowiki>=</nowiki> compileFinal "a <nowiki>=</nowiki> a + 1"; | |x1= <code>myCode <nowiki>=</nowiki> compileFinal "a <nowiki>=</nowiki> a + 1"; | ||
Line 31: | Line 27: | ||
myDuplicateCode = myCode; | myDuplicateCode = myCode; | ||
</code>|EXAMPLE1= | </code>|EXAMPLE1= | ||
| [[compile]], [[call]], [[spawn]], [[isFinal]] |SEEALSO= | | [[compile]], [[call]], [[spawn]], [[isFinal]] |SEEALSO= |
Revision as of 00:22, 17 January 2021
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:
- Strings
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.
- Posted on October 23, 2020 - 10:39 (UTC)
- Dscha
- Change with Arma 3 Patch 2.00, compileFinal is now unable to store code type variables in profileNamespace!