locationNull: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (example)
m (Some wiki formatting)
 
(55 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma2 |= Game name
|game1= arma2
|version1= 1.00


|1.00|= Game version
|game2= arma2oa
____________________________________________________________________________________________
|version2= 1.50


| A non-existing [[Location]]. To compare non-existent locations use [[isNull]] or [[isEqualTo]]:
|game3= tkoh
* <tt>[[locationNull]] <nowiki>==</nowiki> [[locationNull]]; // false</tt>
|version3= 1.00
* <tt>[[isNull]] [[locationNull]]; // true</tt>
* <tt>[[locationNull]] [[isEqualTo]] [[locationNull]]; // true</tt> |= Description
____________________________________________________________________________________________


| '''locationNull''' |= Syntax
|game4= arma3
|version4= 0.50


|p1= |= PARAMETER1
|gr1= Locations


|p2= |= PARAMETER2
|gr2= Variables


|p3= |= PARAMETER3
|descr= A non-existing [[Location]]. To compare non-existent locations use [[isNull]] or [[isEqualTo]]:
<sqf>
locationNull == locationNull; // false
isNull locationNull; // true
locationNull isEqualTo locationNull; // true
</sqf>


| [[Location]] |= RETURNVALUE
|s1= [[locationNull]]


|r1= [[Location]]


| x1 = <code>![[isNull]] [[locationNull]]; // false</code> |=
|x1= <sqf>!isNull locationNull; // false</sqf>
| x2 = <code>[[str]] [[locationNull]]; // No location</code> |=
| x3 = <code>[[position]] [[locationNull]]; // [0,0,0]</code> |=
____________________________________________________________________________________________


| [[controlNull]], [[displayNull]], [[grpNull]], [[objNull]], [[taskNull]], [[teamMemberNull]], [[scriptNull]], [[configNull]], [[typeName]], [[isNull]] |= SEEALSO
|x2= <sqf>str locationNull; // No location</sqf>


| |= MPBEHAVIOUR
|x3= <sqf>position locationNull; // [0,0,0]</sqf>
____________________________________________________________________________________________
 
|seealso= [[controlNull]] [[displayNull]] [[grpNull]] [[objNull]] [[taskNull]] [[teamMemberNull]] [[scriptNull]] [[configNull]] [[typeName]] [[isNull]]
}}
}}
<h3 style='display:none'>Notes</h3>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style='display:none'>Bottom Section</h3>
[[Category:Scripting Commands|LOCALIZE]]
[[Category:ArmA 2: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Locations|{{uc:{{PAGENAME}}}}]]

Latest revision as of 14:19, 13 May 2022

Hover & click on the images for description

Description

Description:
A non-existing Location. To compare non-existent locations use isNull or isEqualTo:
locationNull == locationNull; // false isNull locationNull; // true locationNull isEqualTo locationNull; // true
Groups:
LocationsVariables

Syntax

Syntax:
locationNull
Return Value:
Location

Examples

Example 1:
!isNull locationNull; // false
Example 2:
str locationNull; // No location
Example 3:
position locationNull; // [0,0,0]

Additional Information

See also:
controlNull displayNull grpNull objNull taskNull teamMemberNull scriptNull configNull typeName isNull

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