playActionNow: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (template:command argument fix)
Line 20: Line 20:
| soldier '''playActionNow''' action |= Syntax
| soldier '''playActionNow''' action |= Syntax


|p1= soldier: [[Object]] -  |= PARAMETER1
|p1= soldier: [[Object]] -  |PARAMETER1=  


|p2= action: [[String]] -  |= PARAMETER2
|p2= action: [[String]] -  |PARAMETER2=  


|p3= |= PARAMETER3
|p3= |PARAMETER3=  


| [[Nothing]] |= RETURNVALUE
| [[Nothing]] |RETURNVALUE=  




|x1= <code>soldierOne [[playActionNow]] "SitDown";</code>|= EXAMPLE1
|x1= <code>soldierOne [[playActionNow]] "SitDown";</code>|EXAMPLE1=  


|x2= <code>rabbitTwo [[playActionNow]] "WalkF";</code>|= EXAMPLE2
|x2= <code>rabbitTwo [[playActionNow]] "WalkF";</code>|EXAMPLE2=  


____________________________________________________________________________________________
____________________________________________________________________________________________


| [[playAction]], [[switchAction]], [[playMove]], [[playMoveNow]], [[switchMove]] |= SEEALSO
| [[playAction]], [[switchAction]], [[playMove]], [[playMoveNow]], [[switchMove]] |SEEALSO=  


|  |= MPBEHAVIOUR
|  |MPBEHAVIOUR=  
____________________________________________________________________________________________
____________________________________________________________________________________________
}}
}}

Revision as of 11:35, 7 April 2019

Hover & click on the images for description

Description

Description:
When used on a person, a smooth transition to the given action will be initiated, but all previous playAction are discarded.
For Arma 3 actions see: playAction/actions.
Groups:
Uncategorised

Syntax

Syntax:
soldier playActionNow action
Parameters:
soldier: Object -
action: String -
Return Value:
Nothing

Examples

Example 1:
soldierOne playActionNow "SitDown";
Example 2:
rabbitTwo playActionNow "WalkF";

Additional Information

See also:
playActionswitchActionplayMoveplayMoveNowswitchMove

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

Notes

Posted on October 12, 2010 - 9:41
Wolfrug (talk)
Some other possible playactions:
"walkf" - walk forward
"walkb" - walk backwards
"walkr" - strafe right
"walkl" - strafe left
"grabdrag" - initiate First Aid dragging animation
"stopdrag" - stops First Aid dragging animation
"reloadMagazine" - reloads the current magazine
"gestureFreeze" - hand signal "Freeze"
"GestureGo"
"GestureCover"
"GestureAttack"
"GestureCeaseFire"
"GestureFollow"
"GestureUp"
"GestureAdvance"
"GesturePoint"

Note that playAction works regardless of stance (rifle up, down, crouched, prone).

Bottom Section