taskNull: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *(arg|eff|mp|serverExec|gr[0-9]) *= *(.*) * *\|([^=0-9]{12})" to "|$1=$2 |descr=$3")
m (Text replacement - "<code>([^\[]+)<\/code>" to "<sqf>$1</sqf>")
 
(25 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma2
|game1= arma2
|1.00
|version1= 1.00


|game2= arma2oa
|game2= arma2oa
Line 18: Line 18:


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


|s1= '''taskNull'''
|s1= [[taskNull]]


|r1= [[Task]]
|r1= [[Task]]


|x1= <code>![[isNull]] [[taskNull]]; // false</code>
|x1= <sqf>!isNull taskNull; // false</sqf>
|x2= <code>[[str]] [[taskNull]]; // No task</code>


|seealso= [[controlNull]], [[displayNull]], [[grpNull]], [[locationNull]], [[objNull]], [[teamMemberNull]], [[scriptNull]], [[configNull]], [[typeName]], [[isNull]]
|x2= <sqf>str taskNull; // no task</sqf>
 
|seealso= [[controlNull]] [[displayNull]] [[grpNull]] [[locationNull]] [[objNull]] [[teamMemberNull]] [[scriptNull]] [[configNull]] [[typeName]] [[isNull]]
}}
}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}

Latest revision as of 21:08, 13 May 2022

Hover & click on the images for description

Description

Description:
A non-existing Task. To compare non-existent tasks use isNull or isEqualTo:
taskNull == taskNull; // false isNull taskNull; // true taskNull isEqualTo taskNull; // true
Groups:
BriefingVariables

Syntax

Syntax:
taskNull
Return Value:
Task

Examples

Example 1:
!isNull taskNull; // false
Example 2:
str taskNull; // no task

Additional Information

See also:
controlNull displayNull grpNull locationNull objNull 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