playMove: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "[[Category:Scripting_Commands_Take_On_Helicopters" to "[[Category:Scripting Commands Take On Helicopters")
m (Text replacement - "{{HashLink" to "{{Link")
(45 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| ofp |Game name=
|game1= ofp
|version1= 1.00


|1.00|Game version=
|game2= ofpe
|version2= 1.00


|arg= local |Arguments in MP=
|game3= arma1
|version3= 1.00


|eff= global |Effects in MP=
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| When used on a person, smooth transition to given move will be done.<br>
|game5= arma2oa
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 [[#Examples|Example 2]]).
|version5= 1.50
{{Informative | see [[:Category:Moves]] for respective games animations.}} |Description=
____________________________________________________________________________________________


| unitName [[playMove]] moveName |Syntax=
|game6= tkoh
|version6= 1.00


|p1= unitName: [[Object]] |Parameter 1=
|game7= arma3
|p2=  moveName: [[String]] |Parameter 2=
|version7= 0.50


| [[Nothing]] |Return value=
|arg= local
____________________________________________________________________________________________
 
 
|eff= global
|x1= <code>soldierOne [[playMove]] "Stand";</code> |Example 1=
 
|x2= <code>[[player]] [[switchMove]] "AmovPercMstpSrasWrflDnon";  
|gr1= Animations
[] [[spawn]]
 
|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 {{Link|#Example 2}}).
{{Feature|informative|see [[:Category:Moves]] for respective games animations.}}
 
|s1= unitName [[playMove]] moveName
 
|p1= unitName: [[Object]]
 
|p2= moveName: [[String]]
 
|r1= [[Nothing]]
 
|x1= <sqf>soldierOne playMove "Stand";</sqf>
 
|x2= <sqf>player switchMove "AmovPercMstpSrasWrflDnon";
[] spawn  
{
{
[[sleep]] 0.5;  
sleep 0.5;
[[player]] [[playMove]] "AmovPpneMstpSrasWrflDnon"; {{cc|player goes prone}}
player playMove "AmovPpneMstpSrasWrflDnon"; // player goes prone
[[player]] [[playMove]] "amovPknlMstpSrasWrflDnon"; {{cc|player gets up on one knee}}
player playMove "amovPknlMstpSrasWrflDnon"; // player gets up on one knee
};</code>
};</sqf>
<code>[[player]] [[switchMove]] "amovpercmstpsraswrfldnon";
 
[] [[spawn]]
|x3= <sqf>player switchMove "AmovPercMstpSrasWrflDnon";
[] spawn
{
{
[[sleep]] 0.5;  
sleep 0.5;
[[player]] [[playMove]] "AmovPpneMstpSrasWrflDnon"; {{cc|player never goes prone}}
player playMove "AmovPpneMstpSrasWrflDnon"; // player never goes prone
[[player]] [[playMoveNow]] "AmovPknlMstpSrasWrflDnon"; {{cc|player goes down on one knee straight away}}
player playMoveNow "AmovPknlMstpSrasWrflDnon"; // player goes down on one knee straight away
};</code> |Example 2=
};</sqf>
____________________________________________________________________________________________


| [[playMoveNow]], [[switchMove]], [[playAction]], [[playActionNow]] |See also=
|seealso= [[playMoveNow]] [[switchMove]] [[playAction]] [[playActionNow]]
}}
}}


<h3 style="display:none">Notes</h3>
{{Note
<dl class="command_description">
|user= Macguba
<!-- Note Section BEGIN -->
|timestamp= 20060416023900
 
|text= 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.
<dt class="note">Unknown
}}
<dd class="note">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.
 
<!-- Note Section END -->
</dl>
 
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.46|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]

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.