isFinal

From Bohemia Interactive Community
Revision as of 15:47, 16 October 2020 by R3vo (talk | contribs) (available on stable now)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
-wrong parameter ("a3") defined!-[[:Category:Introduced with a3 version 2.00|2.00]]
Hover & click on the images for description

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 warningsif (!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]]