playMove: 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 (Text replacement - "{{HashLink" to "{{Link")
(6 intermediate revisions by 2 users not shown)
Line 29: Line 29:


|descr= When used on a person, smooth transition to given move will be done.<br>
|descr= When used on a person, smooth transition to given move will be done.<br>
The difference between [[playMove]] and [[playMoveNow]] is that [[playMove]] adds another move to the move queue, while [[playMoveNow]] replaces the whole move queue with new move (see {{HashLink|#Example 2}}).
The difference between [[playMove]] and [[playMoveNow]] is that [[playMove]] adds another move to the move queue, while [[playMoveNow]] replaces the whole move queue with new move (see {{Link|#Example 2}}).
{{Feature|informative|see [[:Category:Moves]] for respective games animations.}}
{{Feature|informative|see [[:Category:Moves]] for respective games animations.}}


Line 40: Line 40:
|r1= [[Nothing]]
|r1= [[Nothing]]


|x1= <code>soldierOne playMove "Stand";</code>
|x1= <sqf>soldierOne playMove "Stand";</sqf>


|x2= <code>player switchMove "AmovPercMstpSrasWrflDnon";
|x2= <sqf>player switchMove "AmovPercMstpSrasWrflDnon";
[] spawn  
[] spawn  
{
{
sleep 0.5;
sleep 0.5;
[[player]] [[playMove]] "AmovPpneMstpSrasWrflDnon"; // player goes prone
player playMove "AmovPpneMstpSrasWrflDnon"; // player goes prone
[[player]] [[playMove]] "amovPknlMstpSrasWrflDnon"; // player gets up on one knee
player playMove "amovPknlMstpSrasWrflDnon"; // player gets up on one knee
};</code>
};</sqf>


<code>player switchMove "AmovPercMstpSrasWrflDnon";
|x3= <sqf>player switchMove "AmovPercMstpSrasWrflDnon";
[] spawn
[] spawn
{
{
sleep 0.5;
sleep 0.5;
[[player]] [[playMove]] "AmovPpneMstpSrasWrflDnon"; // player never goes prone
player playMove "AmovPpneMstpSrasWrflDnon"; // player never goes prone
[[player]] [[playMoveNow]] "AmovPknlMstpSrasWrflDnon"; // player goes down on one knee straight away
player playMoveNow "AmovPknlMstpSrasWrflDnon"; // player goes down on one knee straight away
};</code>
};</sqf>


|seealso= [[playMoveNow]] [[switchMove]] [[playAction]] [[playActionNow]]
|seealso= [[playMoveNow]] [[switchMove]] [[playAction]] [[playActionNow]]

Revision as of 18:43, 4 January 2023

Hover & click on the images for description

Description

Description:
When used on a person, smooth transition to given move will be done.
The difference between playMove and playMoveNow is that playMove adds another move to the move queue, while playMoveNow replaces the whole move queue with new move (see Example 2).
see Category:Moves for respective games animations.
Groups:
Animations

Syntax

Syntax:
unitName playMove moveName
Parameters:
unitName: Object
moveName: String
Return Value:
Nothing

Examples

Example 1:
soldierOne playMove "Stand";
Example 2:
player switchMove "AmovPercMstpSrasWrflDnon"; [] spawn { sleep 0.5; player playMove "AmovPpneMstpSrasWrflDnon"; // player goes prone player playMove "amovPknlMstpSrasWrflDnon"; // player gets up on one knee };
Example 3:
player switchMove "AmovPercMstpSrasWrflDnon"; [] spawn { sleep 0.5; player playMove "AmovPpneMstpSrasWrflDnon"; // player never goes prone player playMoveNow "AmovPknlMstpSrasWrflDnon"; // player goes down on one knee straight away };

Additional Information

See also:
playMoveNow switchMove playAction playActionNow

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
Macguba - c
Posted on Apr 16, 2006 - 02:39 (UTC)
For an immediate transition use switchMove. This command must be executed after mission start. If you place it into init.sqs / init.sqf or in the Init field of some unit, it will not work. Just add a little delay (~0.001) and then place the command.