locationNull: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[[cC]ategory:[sS]cripting [cC]ommands\|[a-z A-Z 0-9_]+\]\]" to "")
m (Some wiki formatting)
 
(32 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma2
|game1= arma2
|version1= 1.00


|1.00
|game2= arma2oa
|version2= 1.50
 
|game3= tkoh
|version3= 1.00
 
|game4= arma3
|version4= 0.50


|gr1= Locations
|gr1= Locations
Line 9: Line 17:
|gr2= Variables
|gr2= Variables


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


|p1=
|s1= [[locationNull]]


|p2=
|r1= [[Location]]


|p3=
|x1= <sqf>!isNull locationNull; // false</sqf>


| [[Location]]
|x2= <sqf>str locationNull; // No location</sqf>


| x1 = <code>![[isNull]] [[locationNull]]; // false</code>
|x3= <sqf>position locationNull; // [0,0,0]</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= [[controlNull]] [[displayNull]] [[grpNull]] [[objNull]] [[taskNull]] [[teamMemberNull]] [[scriptNull]] [[configNull]] [[typeName]] [[isNull]]
}}
}}
{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}

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