compileFinal: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\{\{( *)Informative( *)\|" to "{{$1Feature$2|$2Informative$2|") |
Lou Montana (talk | contribs) m (Text replacement - " <dd class="notedate">" to " <dt><dt> <dd class="notedate">") |
||
Line 32: | Line 32: | ||
<dl class="command_description"> | <dl class="command_description"> | ||
<!-- Note Section BEGIN --> | <!-- Note Section BEGIN --> | ||
<dt><dt> | |||
<dd class="notedate">Posted on August 14, 2013</dd> | <dd class="notedate">Posted on August 14, 2013</dd> | ||
<dt class="note">[[User:AgentRev01|AgentRev]]</dt> | <dt class="note">[[User:AgentRev01|AgentRev]]</dt> | ||
Line 38: | Line 38: | ||
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. | ||
Also, compileFinal does not prevent [[Event_handlers|event handlers]] from being removed or overwritten.</dd> | Also, compileFinal does not prevent [[Event_handlers|event handlers]] from being removed or overwritten.</dd> | ||
<dt><dt> | |||
<dd class="notedate">Posted on May 27, 2017 - 11:58 (UTC)</dd> | <dd class="notedate">Posted on May 27, 2017 - 11:58 (UTC)</dd> | ||
<dt class="note">[[User:IT07|IT07]]</dt> | <dt class="note">[[User:IT07|IT07]]</dt> | ||
Line 44: | Line 44: | ||
in Arma 3 1.70.141838, compileFinal also works for profileNamespace and uiNamespace. But be careful with that. | in Arma 3 1.70.141838, compileFinal also works for profileNamespace and uiNamespace. But be careful with that. | ||
</dd> | </dd> | ||
<dt><dt> | |||
<dd class="notedate">Posted on October 23, 2020 - 10:39 (UTC)</dd> | <dd class="notedate">Posted on October 23, 2020 - 10:39 (UTC)</dd> | ||
<dt class="note">[[User:Dscha|Dscha]]</dt> | <dt class="note">[[User:Dscha|Dscha]]</dt> |
Revision as of 00:11, 6 April 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
- 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.
- 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!