isFinal: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "\[\[Category:[cC]ommand[_ ][gG]roup:[_ ][^|]+\|\{*uc:{{PAGENAME}*]\]" to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments( \("local" or "global"\))?|Effects|Multiplayer Effects( \("local" or "global"\))?|Multiplayer Exe...) |
||
Line 5: | Line 5: | ||
|version1= 2.00 | |version1= 2.00 | ||
|gr1= Variables | |gr1= Variables | ||
|descr= Checks if [[Code|code]] or a variable was compiled final with [[compileFinal]]. | |descr= Checks if [[Code|code]] or a variable was compiled final with [[compileFinal]]. | ||
Line 22: | Line 22: | ||
|x1= <code>myCode = [[compileFinal]] "a = a + 1"; | |x1= <code>myCode = [[compileFinal]] "a = a + 1"; | ||
[[if]] ([[isFinal]] myCode) [[then]] {[[systemChat]] "Code is compiled final."};</code> | [[if]] ([[isFinal]] myCode) [[then]] {[[systemChat]] "Code is compiled final."};</code> | ||
|x2= <code>[[if]] ([[isFinal]] [[BIS_fnc_arsenal]]) then {[[hint]] "You can't edit this function!"};</code> | |x2= <code>[[if]] ([[isFinal]] [[BIS_fnc_arsenal]]) then {[[hint]] "You can't edit this function!"};</code> | ||
|x3= Avoid overwrite .rpt warnings<code>[[if]] (![[isFinal]] fnc_myCode) [[then]] { fnc_myCode = [[compileFinal]] str_myCode };</code> | |x3= Avoid overwrite .rpt warnings<code>[[if]] (![[isFinal]] fnc_myCode) [[then]] { fnc_myCode = [[compileFinal]] str_myCode };</code> | ||
|seealso= [[compile]] [[compileFinal]] | |seealso= [[compile]] [[compileFinal]] | ||
}} | }} |
Revision as of 00:41, 18 January 2021
Description
- Description:
- Checks if code or a variable was compiled final with compileFinal.
- Groups:
- Variables
Syntax
- Syntax:
- isFinal variable
- Parameters:
- varName: String - A String pointing to a variable
- Return Value:
- Boolean - true if final, false if not
Alternative Syntax
- Syntax:
- isFinal code
- Parameters:
- code: Code - Some code
- Return Value:
- Boolean - true if final, false if not
Examples
- Example 1:
myCode = compileFinal "a = a + 1"; if (isFinal myCode) then {systemChat "Code is compiled final."};
- Example 2:
if (isFinal BIS_fnc_arsenal) then {hint "You can't edit this function!"};
- Example 3:
- Avoid overwrite .rpt warnings
if (!isFinal fnc_myCode) then { fnc_myCode = compileFinal str_myCode };
Additional Information
- See also:
- compile compileFinal
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
[[Category:Introduced with a3 version 2.00]][[ Category: a3: New Scripting Commands | ISFINAL]][[ Category: a3: Scripting Commands | ISFINAL]]