canStand: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>")
m (Some wiki formatting)
 
(3 intermediate revisions by the same user not shown)
Line 36: Line 36:


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


|x2= <code>if (not canStand player) then
|x2= <sqf>
if (not canStand player) then
{
{
player [[groupChat]] "My legs! They hit my legs!";
player groupChat "My legs! They hit my legs!";
};</code>
};
</sqf>


|seealso= [[canMove]] [[canFire]]
|seealso= [[canMove]] [[canFire]]
}}
}}

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