isFinal: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Some wiki formatting)
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command
{{RV|type=command


|game1= a3dev
|game1= arma3
|version1= 1.99
|version1= 2.00


|gr1= Variables |GROUP1=
|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 12: Line 12:
|p1= varName: [[String]] - A [[String]] pointing to a variable
|p1= varName: [[String]] - A [[String]] pointing to a variable


|r1= [[Boolean]] - [[True]] if final, [[false]] if not
|r1= [[Boolean]] - [[true]] if final, [[false]] if not


|s2= [[isFinal]] code
|s2= [[isFinal]] code
Line 18: Line 18:
|p21= code: [[Code]] - Some code
|p21= code: [[Code]] - Some code


|r2= [[Boolean]] - [[True]] if final, [[false]] if not
|r2= [[Boolean]] - [[true]] if final, [[false]] if not


|x1= <code>myCode = [[compileFinal]] "a = a + 1";
|x1= <sqf>
[[if]] ([[isFinal]] myCode) [[then]] {[[systemChat]] "Code is compiled final."};</code>|example1=
myCode = compileFinal "a = a + 1";
if (isFinal "myCode") then { systemChat "Code is compiled final." };
</sqf>


|x2= <code>[[if]] ([[isFinal]] [[BIS_fnc_arsenal]]) then {[[hint]] "You can't edit this function!"};</code>|example2=
|x2= <sqf>if (isFinal BIS_fnc_arsenal) then {chint "You can't edit this function!" };</sqf>
 
|x3= Avoid overwrite .rpt warnings<code>[[if]] (![[isFinal]] fnc_myCode) [[then]] { fnc_myCode = [[compileFinal]] str_myCode };</code>|example3=


|x3= Avoid overwrite .rpt warnings:
<sqf>if (!isFinal fnc_myCode) then { fnc_myCode = compileFinal str_myCode };</sqf>


|seealso= [[compile]] [[compileFinal]]
|seealso= [[compile]] [[compileFinal]]
}}
}}
[[Category:Command_Group:_System|{{uc:{{PAGENAME}}}}]]

Revision as of 13:00, 4 May 2022

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 {chint "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