compileFinal: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "{{Command " to "{{RV|type=command ") |
Lou Montana (talk | contribs) m (Text replacement - "\{\{ *codecomment *\| *\/\/ *([^ ]+) *\}\} " to "{{cc|$1}}") |
||
Line 21: | Line 21: | ||
|x1= <code>myCode <nowiki>=</nowiki> compileFinal "a <nowiki>=</nowiki> a + 1"; | |x1= <code>myCode <nowiki>=</nowiki> compileFinal "a <nowiki>=</nowiki> a + 1"; | ||
[[call]] myCode;<br> | [[call]] myCode;<br> | ||
{{ | {{cc|--- Repeated compile won't have any effect}}myCode <nowiki>=</nowiki> compileFinal "a <nowiki>=</nowiki> a + 2";<br> | ||
myCode <nowiki>=</nowiki> compileFinal "a <nowiki>=</nowiki> a + 2";<br> | {{cc|--- Duplicate code will be final as well}}myDuplicateCode = myCode; | ||
{{ | |||
myDuplicateCode = myCode; | |||
</code> | </code> | ||
Revision as of 16:33, 29 January 2021
Description
- Description:
- Description needed
- Groups:
- Strings
Syntax
- Syntax:
- Syntax needed
- Parameters:
- expression: String
- Return Value:
- Return value needed
Examples
- Example 1:
myCode = compileFinal "a = a + 1"; call myCode;
// --- Repeated compile won't have any effectmyCode = compileFinal "a = a + 2";
// --- Duplicate code will be final as wellmyDuplicateCode = myCode;
Additional Information
- See also:
- See also needed
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!