isWeaponDeployed: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - ":<code>" to ": <code>")
m (Some wiki formatting)
 
(5 intermediate revisions by the same user not shown)
Line 22: Line 22:
|p21= unit: [[Object]]
|p21= unit: [[Object]]


|p22= onGround (Optional): [[Boolean]] - [[true]] to check if deployed on ground, [[false]] to check if deployed on object. Omitted - same as main syntax.
|p22= onGround: [[Boolean]] - (Optional) [[true]] to check if deployed on ground, [[false]] to check if deployed on object. Omitted - same as main syntax.


|r2= [[Boolean]]  
|r2= [[Boolean]]  


|x1= <code>_dep = [[isWeaponDeployed]] [[player]];</code>
|x1= <sqf>_dep = isWeaponDeployed player;</sqf>


|x2= <code>_depOnObj = [[isWeaponDeployed]] <nowiki>[</nowiki>[[player]], [[false]]];</code>
|x2= <sqf>_depOnObj = isWeaponDeployed [player, false];</sqf>


|seealso= [[isWeaponRested]] [[canDeployWeapon]]
|seealso= [[isWeaponRested]] [[canDeployWeapon]]
Line 37: Line 37:
|timestamp= 20150701164400
|timestamp= 20150701164400
|text= You can force a unit out of bipod or resting with:
|text= You can force a unit out of bipod or resting with:
<code>_unit [[playMove]] "";</code>
<sqf>_unit playMove "";</sqf>
}}
}}


Line 44: Line 44:
|timestamp= 20170304035800
|timestamp= 20170304035800
|text= [[playMove]], as well as [[switchMove]], appears to not work when forcing a player out of being deployed. A more reliable method is:
|text= [[playMove]], as well as [[switchMove]], appears to not work when forcing a player out of being deployed. A more reliable method is:
<code>_player [[setPos]] (_player [[modelToWorld]] [0,0,0]);</code>
<sqf>_player setPos (_player modelToWorld [0,0,0]);</sqf>
}}
}}

Latest revision as of 15:54, 13 May 2022

Hover & click on the images for description

Description

Description:
Returns true if weapon is currently deployed.
Groups:
Weapons

Syntax

Syntax:
isWeaponDeployed unit
Parameters:
unit: Object
Return Value:
Boolean

Alternative Syntax

Syntax:
isWeaponDeployed [unit, onGround]
Parameters:
unit: Object
onGround: Boolean - (Optional) true to check if deployed on ground, false to check if deployed on object. Omitted - same as main syntax.
Return Value:
Boolean

Examples

Example 1:
_dep = isWeaponDeployed player;
Example 2:
_depOnObj = isWeaponDeployed [player, false];

Additional Information

See also:
isWeaponRested canDeployWeapon

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
AgentRev - c
Posted on Jul 01, 2015 - 16:44 (UTC)
You can force a unit out of bipod or resting with:
_unit playMove "";
Beno 83au - c
Posted on Mar 04, 2017 - 03:58 (UTC)
playMove, as well as switchMove, appears to not work when forcing a player out of being deployed. A more reliable method is:
_player setPos (_player modelToWorld [0,0,0]);