canStand: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|seealso= ?\[\[([^ ]+)\]\], \[\[([^ ]+)\]\]" to "|seealso= $1 $2")
m (Text replacement - ": *<code>" to ": <code>")
Line 35: Line 35:
|r1= [[Boolean]] - [[true]] if the unit is human and is still able to stand up, [[false]] otherwise.
|r1= [[Boolean]] - [[true]] if the unit is human and is still able to stand up, [[false]] otherwise.


|x1= [[SQS Syntax|SQS]]: <code>? ([[not]] [[canStand]] [[player]]) : [[player]] [[groupChat]] "My legs! They hit my legs!"</code>
|x1= [[SQS Syntax|SQS]]:
<code>? ([[not]] [[canStand]] [[player]]) : [[player]] [[groupChat]] "My legs! They hit my legs!"</code>


|x2= <code>[[if]] ([[not]] [[canStand]] [[player]]) [[then]]
|x2= <code>[[if]] ([[not]] [[canStand]] [[player]]) [[then]]

Revision as of 22:53, 7 May 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