isFinal: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "|game1= a3 " to "|game1= arma3 ") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 20: | Line 20: | ||
|r2= [[Boolean]] - [[true]] if final, [[false]] if not | |r2= [[Boolean]] - [[true]] if final, [[false]] if not | ||
|x1= < | |x1= <sqf> | ||
myCode = compileFinal "a = a + 1"; | |||
if (isFinal "myCode") then { systemChat "Code is compiled final." }; | |||
</sqf> | |||
|x2= < | |x2= <sqf>if (isFinal BIS_fnc_arsenal) then {chint "You can't edit this function!" };</sqf> | ||
|x3= Avoid overwrite .rpt warnings< | |x3= Avoid overwrite .rpt warnings: | ||
<sqf>if (!isFinal fnc_myCode) then { fnc_myCode = compileFinal str_myCode };</sqf> | |||
|seealso= [[compile]] [[compileFinal]] | |seealso= [[compile]] [[compileFinal]] | ||
}} | }} |
Revision as of 12:00, 4 May 2022
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:
- Example 3:
- Avoid overwrite .rpt warnings:
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