removeAction: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(see also)
m (template:command argument fix)
Line 13: Line 13:
| Removes user added action with given id index. This only removes actions added with the [[addAction]] command. You cannot remove default game actions, such as reload.
| Removes user added action with given id index. This only removes actions added with the [[addAction]] command. You cannot remove default game actions, such as reload.


This command has [[local]] effect. The action will only be removed on the computer that executes the command. |= Description
This command has [[local]] effect. The action will only be removed on the computer that executes the command. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| unit '''removeAction''' index |= Syntax
| unit '''removeAction''' index |SYNTAX=


|p1= unit: [[Object]] - unit, vehicle or static object |= Parameter 1
|p1= unit: [[Object]] - unit, vehicle or static object |PARAMETER1=
|p2= index: [[Number]] - action id returned by [[addAction]] |= Parameter 2
|p2= index: [[Number]] - action id returned by [[addAction]] |PARAMETER2=


| [[Nothing]] |= Return value
| [[Nothing]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <code>[[player]] [[removeAction]] 0;</code> |= Example 1
|x1= <code>[[player]] [[removeAction]] 0;</code> |EXAMPLE1=
____________________________________________________________________________________________
____________________________________________________________________________________________


|  [[actionIDs]], [[actionParams]], [[addAction]], [[setUserActionText]], [[inGameUISetEventHandler]], [[showHUD]], [[inputAction]], [[removeAllActions]], [[action]]|= See also
|  [[actionIDs]], [[actionParams]], [[addAction]], [[setUserActionText]], [[inGameUISetEventHandler]], [[showHUD]], [[inputAction]], [[removeAllActions]], [[action]]|SEEALSO=


}}
}}

Revision as of 15:45, 7 April 2019

Hover & click on the images for description

Description

Description:
Removes user added action with given id index. This only removes actions added with the addAction command. You cannot remove default game actions, such as reload. This command has local effect. The action will only be removed on the computer that executes the command.
Groups:
Uncategorised

Syntax

Syntax:
unit removeAction index
Parameters:
unit: Object - unit, vehicle or static object
index: Number - action id returned by addAction
Return Value:
Nothing

Examples

Example 1:
player removeAction 0;

Additional Information

See also:
actionIDsactionParamsaddActionsetUserActionTextinGameUISetEventHandlershowHUDinputActionremoveAllActionsaction

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

Bottom Section