teamMemberNull: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "[[Category:Scripting_Commands_Take_On_Helicopters" to "[[Category:Scripting Commands Take On Helicopters")
Line 8: Line 8:


| A non-existent [[Team Member]]. To compare non-existent team members use [[isNull]] or [[isEqualTo]]:
| A non-existent [[Team Member]]. To compare non-existent team members use [[isNull]] or [[isEqualTo]]:
* <tt>[[teamMemberNull]] <nowiki>==</nowiki> [[teamMemberNull]]; // false</tt>
* <tt>[[teamMemberNull]] {{=}}{{=}} [[teamMemberNull]]; {{cc|false}}</tt>
* <tt>[[isNull]] [[teamMemberNull]]; // true</tt>
* <tt>[[isNull]] [[teamMemberNull]]; {{cc|true}}</tt>
* <tt>[[teamMemberNull]] [[isEqualTo]] [[teamMemberNull]]; // true</tt> |DESCRIPTION=
* <tt>[[teamMemberNull]] [[isEqualTo]] [[teamMemberNull]]; {{cc|true}}</tt> |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| '''teamMemberNull''' |SYNTAX=
| [[teamMemberNull]] |SYNTAX=


| [[Team Member]] |RETURNVALUE=  
| [[Team Member]] |RETURNVALUE=


 
|x1= <code>![[isNull]] [[teamMemberNull]]; {{cc|false}}</code> |EXAMPLE1=
| x1 = <code>![[isNull]] [[teamMemberNull]]; // false</code> |=
|x2= <code>[[str]] [[teamMemberNull]]; {{cc|&lt;NULL - team member&gt;}}</code> |EXAMPLE2=
| x2 = <code>[[str]] [[teamMemberNull]]; // <NULL - team member></code> |=  
|x3= <code>[[if]] (_teamMember [[isEqualTo]] [[teamMemberNull]]) [[then]] {
|x3= <code>[[if]] (_teamMember [[isEqualTo]] [[teamMemberNull]]) [[then]] {
[[hint]] "is null member";
[[hint]] "team member is null";
};</code> |EXAMPLE1=  
};</code> |EXAMPLE3=


____________________________________________________________________________________________
____________________________________________________________________________________________


| [[addTeamMember]], [[createTeam]], [[deleteTeam]], [[forEachMemberTeam]], [[removeTeamMember]], [[teamMember]], [[teamName]], [[teams]], [[teamType]], [[controlNull]], [[displayNull]], [[grpNull]], [[locationNull]], [[objNull]], [[taskNull]], [[scriptNull]], [[configNull]], [[typeName]], [[isNull]] |SEEALSO=  
| [[addTeamMember]], [[createTeam]], [[deleteTeam]], [[forEachMemberTeam]], [[removeTeamMember]], [[teamMember]], [[teamName]], [[teams]], [[teamType]], [[controlNull]], [[displayNull]], [[grpNull]], [[locationNull]], [[objNull]], [[taskNull]], [[scriptNull]], [[configNull]], [[typeName]], [[isNull]] |SEEALSO=
 
|  |MPBEHAVIOUR=
____________________________________________________________________________________________
}}
}}


Line 41: Line 37:
<h3 style='display:none'>Bottom Section</h3>
<h3 style='display:none'>Bottom Section</h3>


[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Revision as of 01:11, 24 August 2020

Hover & click on the images for description

Description

Description:
A non-existent Team Member. To compare non-existent team members use isNull or isEqualTo:
Groups:
Uncategorised

Syntax

Syntax:
teamMemberNull
Return Value:
Team Member

Examples

Example 1:
!isNull teamMemberNull; // false
Example 2:
str teamMemberNull; // <NULL - team member>
Example 3:
if (_teamMember isEqualTo teamMemberNull) then { hint "team member is null"; };

Additional Information

See also:
addTeamMembercreateTeamdeleteTeamforEachMemberTeamremoveTeamMemberteamMemberteamNameteamsteamTypecontrolNulldisplayNullgrpNulllocationNullobjNulltaskNullscriptNullconfigNulltypeNameisNull

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

Notes

Bottom Section