canStand: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " {2,}\}\}" to " }}")
m (Some wiki formatting)
 
(25 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command
{{RV|type=command


| ofp
|game1= ofp
|version1= 1.00


|1.00
|game2= ofpe
|version2= 1.00


|arg= global
|game3= arma1
|version3= 1.00


|gr1= Object Manipulation
|game4= arma2
|version4= 1.00


| Returns if the given soldier is able to stand up.
|game5= arma2oa
|version5= 1.50


| [[Boolean]] <nowiki>=</nowiki> '''canStand''' unitName
|game6= tkoh
|version6= 1.00


|p1= unitName: [[Object]]
|game7= arma3
|version7= 0.50


| [[Boolean]] - 
|arg= global
[[true]] if he's still able to stand up, [[false]] if not. Automatically return [[false]] if unit is vehicle.
 
|x1= [[SQS]]: <code>?!([[canStand]] [[player]]) : [[player]] [[groupChat]] "My legs! They hit my legs!"</code>


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


| [[canMove]], [[canFire]]
|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.}}


<dl class="command_description">
|s1= [[canStand]] unit
<!-- Note Section BEGIN -->


<dt class="note">[[User:Kronzky|Kronzky]]
|p1= unit: [[Object]]
<dd class="note">
The command may return true for dead units.


|r1= [[Boolean]] - [[true]] if the unit is human and is still able to stand up, [[false]] otherwise.


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


|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.99|CANSTAND]]
}}
[[Category:Scripting Commands OFP 1.96|CANSTAND]]
[[Category:Scripting Commands OFP 1.46|CANSTAND]]
{{GameCategory|arma1|Scripting Commands}}
{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}

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