canStand: Difference between revisions

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


| ofp |= Game name
|game1= ofp
|version1= 1.00


|1.00|= Game version
|game2= ofpe
|version2= 1.00


|arg= global |= Arguments in MP
|game3= arma1
____________________________________________________________________________________________
|version3= 1.00


| Returns if the given soldier is able to stand up. |= Description
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| '''canStand''' soldier |= Syntax
|game5= arma2oa
|version5= 1.50


|p1= soldier: [[Object]] |= Parameter 1
|game6= tkoh
|version6= 1.00


| [[Boolean]] - 
|game7= arma3
true if he's still able to stand up, false if not |= Return value
|version7= 0.50
____________________________________________________________________________________________
 
|x1= <pre>?!(canStand player) : player groupChat "My legs! They hit my legs!"</pre> |= Example 1
____________________________________________________________________________________________


| [[canMove]], [[canFire]] |= See also
|arg= global


}}
|gr1= Object Manipulation
 
|descr= Returns if the given soldier is able to stand up. It only checks for the unit's legs and not its alive/dead status - it can return [[true]] for a dead unit.
{{Feature|arma3|Since {{arma3}} v1.60 and the introduction of limping, this command always returns [[true]] for humans.}}
 
|s1= [[canStand]] unit
 
|p1= unit: [[Object]]


<h3 style="display:none">Notes</h3>
|r1= [[Boolean]] - [[true]] if the unit is human and is still able to stand up, [[false]] otherwise.
<dl class="command_description">
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|x1= [[SQS Syntax|SQS]]:
</dl>
<sqs>? (not canStand player) : player groupChat "My legs! They hit my legs!"</sqs>


<h3 style="display:none">Bottom Section</h3>
|x2= <sqf>
if (not canStand player) then
{
player groupChat "My legs! They hit my legs!";
};
</sqf>


[[Category:Scripting Commands|CANSTAND]]
|seealso= [[canMove]] [[canFire]]
[[Category:Scripting Commands OFP 1.96|CANSTAND]]
}}
[[Category:Scripting Commands OFP 1.46|CANSTAND]]
[[Category:Scripting Commands ArmA|CANSTAND]]

Latest revision as of 15:30, 29 July 2022

Hover & click on the images for description

Description

Description:
Returns if the given soldier is able to stand up. It only checks for the unit's legs and not its alive/dead status - it can return true for a dead unit.
Arma 3
Since Arma 3 v1.60 and the introduction of limping, this command always returns true for humans.
Groups:
Object Manipulation

Syntax

Syntax:
canStand unit
Parameters:
unit: Object
Return Value:
Boolean - true if the unit is human and is still able to stand up, false otherwise.

Examples

Example 1:
SQS:
? (not canStand player) : player groupChat "My legs! They hit my legs!"
Example 2:
if (not canStand player) then { player groupChat "My legs! They hit my legs!"; };

Additional Information

See also:
canMove canFire

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