addAction TKOH: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Comment cleanup and A3 note)
Line 15: Line 15:
This command has [[local]] effect. Created action is only available on the computer where command was executed. To make action available to all players, command must be executed on all connected clients.<br><br>
This command has [[local]] effect. Created action is only available on the computer where command was executed. To make action available to all players, command must be executed on all connected clients.<br><br>


Note: [[addAction]] will be ignored on dedicated server, probably because no UI. |= Description
'''NOTE:''' '''addAction''' will be ignored on dedicated server, probably because no UI.
{{Feature arma3|This version of the command goes from Operation Flashpoint to Take On Helicopters. For the Arma 3 version, see [[addAction]].}} |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 30: Line 31:
<li>''target'' (''_this select 0''): [[Object]] - the object which the action is assigned to</li>
<li>''target'' (''_this select 0''): [[Object]] - the object which the action is assigned to</li>
<li>''caller'' (''_this select 1''): [[Object]] - the unit that activated the action</li>
<li>''caller'' (''_this select 1''): [[Object]] - the unit that activated the action</li>
<li>''ID'' (''_this select 2''): [[Number]] - ID of the activated action (same as ID returned by [[addAction]])</li>
<li>''ID'' (''_this select 2''): [[Number]] - ID of the activated action (same as ID returned by '''addAction''')</li>
<li>''arguments'' (''_this select 3''): [[Anything]] - arguments given to the script if you are using the extended syntax</li>
<li>''arguments'' (''_this select 3''): [[Anything]] - arguments given to the script if you are using the extended syntax</li>
</ul></dd>
</ul></dd>
Line 78: Line 79:
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= Short and sweet:<code>[[player]] [[addAction]] ["A Useless Action", ""];
|x1= Short and sweet:<code>[[player]] '''addAction''' ["A Useless Action", ""];
[[player]] [[addAction]] ["<t color='#FF0000'>This Useless Action Is RED</t>", ""];
[[player]] '''addAction''' ["<t color='#FF0000'>This Useless Action Is RED</t>", ""];
[[player]] [[addAction]] ["Hint Hello!", { [[hint]] [[format]] ["Hello %1!", [[_this]] [[select]] 3] }, [[name]] [[player]]];
[[player]] '''addAction''' ["Hint Hello!", { [[hint]] [[format]] ["Hello %1!", [[_this]] [[select]] 3] }, [[name]] [[player]]];
[[player]] [[addAction]] ["string exec", "hint 'this is also compiled'"];</code> |= Example 1
[[player]] '''addAction''' ["string exec", "hint 'this is also compiled'"];</code> |= Example 1


|x2= Actionception:<code>actions = [];
|x2= Actionception:<code>actions = [];
actions [[set]] [0, [[player]] [[addAction]] ["Actionception", {
actions [[set]] [0, [[player]] '''addAction''' ["Actionception", {
[[if]] ([[count]] actions == 1) [[then]] {
[[if]] ([[count]] actions == 1) [[then]] {
actions [[set]] [1, [[player]] [[addAction]] [" Actionception ", {
actions [[set]] [1, [[player]] '''addAction''' [" Actionception ", {
[[if]] ([[count]] actions == 2) [[then]] {
[[if]] ([[count]] actions == 2) [[then]] {
actions [[set]] [2, [[player]] [[addAction]] ["  Actionception  ", {
actions [[set]] [2, [[player]] '''addAction''' ["  Actionception  ", {
[[if]] ([[count]] actions == 3) [[then]] {
[[if]] ([[count]] actions == 3) [[then]] {
actions [[set]] [3, [[player]] [[addAction]] ["  Actionception  ", {
actions [[set]] [3, [[player]] '''addAction''' ["  Actionception  ", {
{
{
[[player]] [[removeAction]] [[Magic Variables|_x]];
[[player]] [[removeAction]] [[Magic Variables|_x]];
Line 102: Line 103:
}, [], 10, [[false]], [[false]]]];</code> |= Example 2
}, [], 10, [[false]], [[false]]]];</code> |= Example 2


|x3= [[SQS]] example: <code>_genAct = generator [[addAction]] ["Switch on generator", "activate_generator.sqs"]</code>
|x3= [[SQS]] example: <code>_genAct = generator '''addAction''' ["Switch on generator", "activate_generator.sqs"]</code>
activate_generator.sqs:
activate_generator.sqs:


Line 113: Line 114:
This example shows an action called "Switch on generator" added to an object with the name 'generator'. As soon as the player gets close to this object, he can execute the given action via the action menu. Then the script 'activate_generator.sqs' is executed, which in our example only removes the action from the generator. |= Example 3
This example shows an action called "Switch on generator" added to an object with the name 'generator'. As soon as the player gets close to this object, he can execute the given action via the action menu. Then the script 'activate_generator.sqs' is executed, which in our example only removes the action from the generator. |= Example 3


|x4= [[:Category:Take_On|TKOH]] example:<code>_heli [[addAction]] [
|x4= [[:Category:Take_On|TKOH]] example:<code>_heli '''addAction''' [
"Test",
"Test",
"myTest.sqf",
"myTest.sqf",
Line 144: Line 145:
<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on August 2, 2006 - 10:10
<dd class="notedate">Posted on August 2, 2006 - 10:10
<dt class="note">'''[[User:Hardrock|hardrock]]'''<dd class="note">
<dt class="note">[[User:Hardrock|hardrock]]
<dd class="note">
An easy way to keep track of and remove actions is to store the IDs of the actions in variables.
An easy way to keep track of and remove actions is to store the IDs of the actions in variables.
This can be accomplished by doing the following:  
This can be accomplished by doing the following:  
<code>_myaction = [[player]] [[addAction]] ["Hello", "hello.sqs"];</code>
<code>_myaction = [[player]] '''addAction''' ["Hello", "hello.sqs"];</code>
This stores the action's ID in the local variable "_myaction" and assists in keeping track of the action ID.
This stores the action's ID in the local variable "_myaction" and assists in keeping track of the action ID.
To remove the above action, you would use the following line:  
To remove the above action, you would use the following line:  
<code>[[player]] [[removeAction]] _myaction;</code>
<code>[[player]] [[removeAction]] _myaction;</code>


<dd class="notedate">Posted on 17:35, 24 August 2013 (CEST)
<dt class="note">'''[[User:Killzone_Kid|Killzone_Kid]]'''<dd class="note">
In Arma 3 [[addAction]] does not work on animals. This is [http://feedback.arma3.com/view.php?id=7319 intended behavior].
<!-- Note Section END -->
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|ADDACTION]]
[[Category:Scripting Commands OFP 1.99|ADDACTION]]
[[Category:Scripting Commands OFP 1.96|ADDACTION]]
[[Category:Scripting Commands OFP 1.46|ADDACTION]]
[[Category:Scripting Commands ArmA|ADDACTION]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Activators|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Interaction|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Unit_Control|{{uc:{{PAGENAME}}}}]]


<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on June 19, 2014 - 15:01 (UTC)</dd>
<dd class="notedate">Posted on June 19, 2014 - 15:01 (UTC)</dd>
<dt class="note">'''[[User:Krzmbrzl00|Krzmbrzl00]]'''</dt>
<dt class="note">[[User:Krzmbrzl00|Krzmbrzl00]]</dt>
<dd class="note">If executing ''actual script code'' like this:
<dd class="note">If executing ''actual script code'' like this:
<code>_unit [[addAction]] [ "yourAction", { [[hint]] "A line of code" } ];</code>
<code>_unit '''addAction''' [ "yourAction", { [[hint]] "A line of code" } ];</code>
:you can have a user action that uses and/or affects variables used elsewhere in the script that adds the action.
:you can have a user action that uses and/or affects variables used elsewhere in the script that adds the action.
'''But beware!'''<br>
'''But beware!'''<br>
The variable(s) must be global otherwise it won't work! ''i.e.''
The variable(s) must be global otherwise it won't work! ''i.e.''
;Fail:<code>_variable = [[false]];<br>_unit [[addAction]] [ "action", { _variable = [[true]] } ];</code>
;Fail:<code>_variable = [[false]];<br>_unit '''addAction''' [ "action", { _variable = [[true]] } ];</code>
;Succeed:<code>variable = [[false]];<br>_unit [[addAction]] [ "action", { variable = [[true]] } ];</code>
;Succeed:<code>variable = [[false]];<br>_unit '''addAction''' [ "action", { variable = [[true]] } ];</code>
</dd>
</dd>
</dl>
<!-- DISCONTINUE Notes -->


<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on August 15, 2014 - 13:10 (UTC)</dd>
<dd class="notedate">Posted on August 15, 2014 - 13:10 (UTC)</dd>
<dt class="note">[[User:SilentSpike|SilentSpike]]</dt>
<dt class="note">[[User:SilentSpike|SilentSpike]]</dt>
Line 194: Line 173:
Be aware that function names are essentially just global variables for code, so you can use function names as the '''script''' parameter.
Be aware that function names are essentially just global variables for code, so you can use function names as the '''script''' parameter.
</dd>
</dd>
</dl>
<!-- DISCONTINUE Notes -->


<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on March 10, 2015 - 09:55 (UTC)</dd>
<dd class="notedate">Posted on March 10, 2015 - 09:55 (UTC)</dd>
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
Line 204: Line 179:
Function to remove user actions with unknown ids:
Function to remove user actions with unknown ids:
<code>KK_fnc_removeUnknownUserActions <nowiki>=</nowiki> {
<code>KK_fnc_removeUnknownUserActions <nowiki>=</nowiki> {
[[for]] "_i" [[from]] 0 [[to]] ([[player]] [[addAction]] ["",""]) [[do]] {
[[for]] "_i" [[from]] 0 [[to]] ([[player]] '''addAction''' ["",""]) [[do]] {
[[if]] !(_i [[in]] [[_this]]) [[then]] {
[[if]] !(_i [[in]] [[_this]]) [[then]] {
[[player]] [[removeAction]] _i;
[[player]] [[removeAction]] _i;
Line 212: Line 187:
To test:
To test:
<code>[[for]] "_i" [[from]] 0 [[to]] 9 [[do]] {
<code>[[for]] "_i" [[from]] 0 [[to]] 9 [[do]] {
[[player]] [[addAction]] ["Action #" + [[str]] _i, {
[[player]] '''addAction''' ["Action #" + [[str]] _i, {
[0,5,6] [[call]] KK_fnc_removeUnknownUserActions;  
[0,5,6] [[call]] KK_fnc_removeUnknownUserActions;  
}];
}];
Line 219: Line 194:
Removes all user actions but 0, 5 and 6.
Removes all user actions but 0, 5 and 6.
</dd>
</dd>
<!-- Note Section END -->
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|ADDACTION]]
[[Category:Scripting Commands OFP 1.99|ADDACTION]]
[[Category:Scripting Commands OFP 1.96|ADDACTION]]
[[Category:Scripting Commands OFP 1.46|ADDACTION]]
[[Category:Scripting Commands ArmA|ADDACTION]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Activators|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Interaction|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Unit_Control|{{uc:{{PAGENAME}}}}]]
<dl class="command_description">
</dl>
</dl>
<!-- DISCONTINUE Notes -->
<!-- DISCONTINUE Notes -->

Revision as of 22:36, 27 March 2018

Hover & click on the images for description

Description

Description:
Adds an entry to the action menu of an object (scroll wheel menu). The action can only be activated when in proximity to the object (eg: building). Adding an action to the player obviously makes that action available to the player at all times.

This command has local effect. Created action is only available on the computer where command was executed. To make action available to all players, command must be executed on all connected clients.

NOTE: addAction will be ignored on dedicated server, probably because no UI.
Arma 3
This version of the command goes from Operation Flashpoint to Take On Helicopters. For the Arma 3 version, see addAction.
Problems:
Due to a bug in OFP actions added via addAction don't get updated properly after mounting vehicles. When you have several actions available while mounting a vehicle and drive away from the actions' position, they'll still be shown in the menu until you dismount and remount the vehicle. There are work-arounds mentioned on the OFPEC Forums
Groups:
Uncategorised

Syntax

Syntax:
unit addAction [title, script, arguments, priority, showWindow, hideOnUse, shortcut, condition, positionInModel, radius, radiusView, showIn3D, available, textDefault, textToolTip]
Parameters:
unit:
Object - unit, vehicle or static object
title:
String - The action name which is displayed in the action menu, may contain XML like syntax. Because of that < and > symbols will be interpreted as opening and closing XML tags. To avoid this use &lt; for < and &gt; for >. The title text can be changed with setUserActionText
script:
String or Code - Either path to the script file, relative to the mission folder or string with code or (since Take On Helicopters) the actual script code. If the string is a path to script file, the script file *must* have extension .SQS or .SQF (in Arma), or .SQS (in OFP). The script, whether it is a file or a code, will run in scheduled environment, i.e. it is ok to use sleep.
  • Parameters array passed to the script upon activation in _this variable is: [target, caller, ID, arguments]
  • target (_this select 0): Object - the object which the action is assigned to
  • caller (_this select 1): Object - the unit that activated the action
  • ID (_this select 2): Number - ID of the activated action (same as ID returned by addAction)
  • arguments (_this select 3): Anything - arguments given to the script if you are using the extended syntax
arguments:
(optional): Anything - Arguments to pass to the script (will be _this select 3 inside the script). If Array is used as an argument for example, its 1st element reference would be _this select 3 select 0. Default value: nil
priority:
(optional): Number - Priority value of the action. Actions will be arranged in descending order according to this value. Every game action has a preset priority value. Value can be negative or decimal fraction. Actions with same values will be arranged in order which they were made, newest at the bottom. The bigger the number the higher the action will be positioned on the menu. Typical range is 0 (low priority. Eg: 'Get out') to 6 (high priority. Eg: 'Auto-hover on'). Default value: 1.5
showWindow:
(optional): Boolean - If set to true, players see "Titletext" at mid-lower screen, as they approach the object. Only the title text for the action with highest priority and 'showWindow true' will be shown. Setting it to false disables the feature. Default value: true
hideOnUse:
(optional): Boolean - If set to true, it will hide the action menu after selecting that action. If set to false, it will leave the action menu open and visible after selecting that action, leaving the same action highlighted, for the purpose of allowing you to reselect that same action quickly, or to select another action. Default value: true
shortcut:
(optional): String - One of the key names defined in bin.pbo (e.g. "moveForward"). Adding available shortcut will bind corresponding keyboard key to this action. Shortcut availability can be tested with inputAction command. Default value: ""
condition:
(optional): String - script code that must return true for the action to be shown. Special variables passed to the script code are _target (unit to which action is attached to) and _this (caller/executing unit). Default value: "true"
NOTE: condition is evaluated on each frame in non-scheduled environment. If action is added to some object and not to player, condition will only get evaluated IF player is closer than 15m to the object AND is looking at the object. If action is added to player, the condition is evaluated all the time.
positionInModel:
(optional, TKOH only): String - Name of the named selection in the model for positioning the action in 3D space, typically a memory point. Default: ""
radius:
(optional, TKOH only): Number - Distance in meters the unit activating the action must be within to activate it. -1 disables this radius
radiusView:
(optional, TKOH only): Number - Maximum distance in meters the cursor can be away from the 3D action to activate it. -1 disables this radius
showIn3D:
(optional, TKOH only): Number - Condition for showing the action in 3D space (combine by adding up)
  • 1 - show
  • 2 - draw if unit is pilot
  • 4 - draw if unit is inside vehicle
  • 8 - draw if unit is outside vehicle
  • 16 - draw if not in external camera
  • 32 - draw if not in internal camera
  • 64 - draw if not in gunner camera (turret optics)
available:
(optional, TKOH only): Number - Condition for being able to activate the action (combine by adding up)
  • 0 - disabled
  • 1 - unit is pilot or copilot
  • 2 - unit is inside target
  • 4 - unit is not inside target
textDefault:
(optional, TKOH only): String - Structured Text which is shown as the 3D action (so it can be an icon), or in the center of the screen when the action is highlighted in the action menu for a 2D action
textToolTip:
(optional, TKOH only): String - Structured Text which is faded in under the textDefault when hovering over the action in 3D space
Return Value:
Number The ID of the action is returned. IDs are incrementing. The first given action to each unit has got the ID 0, the second the ID 1 etc. ID's are also passed to the called script and used to remove an action with removeAction

Examples

Example 1:
Short and sweet:player addAction ["A Useless Action", ""]; player addAction ["<t color='#FF0000'>This Useless Action Is RED</t>", ""]; player addAction ["Hint Hello!", { hint format ["Hello %1!", _this select 3] }, name player]; player addAction ["string exec", "hint 'this is also compiled'"];
Example 2:
Actionception:actions = []; actions set [0, player addAction ["Actionception", { if (count actions == 1) then { actions set [1, player addAction [" Actionception ", { if (count actions == 2) then { actions set [2, player addAction [" Actionception ", { if (count actions == 3) then { actions set [3, player addAction [" Actionception ", { { player removeAction _x; } forEach actions; }, [], 10, false, true]]; }; }, [], 10, false, false]]; }; }, [], 10, false, false]]; }; }, [], 10, false, false]];
Example 3:
SQS example: _genAct = generator addAction ["Switch on generator", "activate_generator.sqs"] activate_generator.sqs: _gen = _this select 0 _caller = _this select 1 _id = _this select 2 ; remove the action once it is activated _gen removeAction _id This example shows an action called "Switch on generator" added to an object with the name 'generator'. As soon as the player gets close to this object, he can execute the given action via the action menu. Then the script 'activate_generator.sqs' is executed, which in our example only removes the action from the generator.
Example 4:
TKOH example:_heli addAction [ "Test", "myTest.sqf", "", 1, true, true, "", "true", "display1", 2, 0.25, 9, 0, "<img image='\HSim\UI_H\data\ui_action_autohover_ca.paa' size='1.8' shadow=0 />", "<br />My test tooltip" ]

Additional Information

See also:
removeActionremoveAllActionssetUserActionTextinputActionaction

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 August 2, 2006 - 10:10
hardrock
An easy way to keep track of and remove actions is to store the IDs of the actions in variables. This can be accomplished by doing the following: _myaction = player addAction ["Hello", "hello.sqs"]; This stores the action's ID in the local variable "_myaction" and assists in keeping track of the action ID. To remove the above action, you would use the following line: player removeAction _myaction;
Posted on June 19, 2014 - 15:01 (UTC)
Krzmbrzl00
If executing actual script code like this: _unit addAction [ "yourAction", { hint "A line of code" } ];
you can have a user action that uses and/or affects variables used elsewhere in the script that adds the action.
But beware!
The variable(s) must be global otherwise it won't work! i.e.
Fail
_variable = false;
_unit addAction [ "action", { _variable = true } ];
Succeed
variable = false;
_unit addAction [ "action", { variable = true } ];
Posted on August 15, 2014 - 13:10 (UTC)
SilentSpike
Be aware that function names are essentially just global variables for code, so you can use function names as the script parameter.
Posted on March 10, 2015 - 09:55 (UTC)
Killzone Kid
Function to remove user actions with unknown ids: KK_fnc_removeUnknownUserActions = { for "_i" from 0 to (player addAction ["",""]) do { if !(_i in _this) then { player removeAction _i; }; }; }; To test: for "_i" from 0 to 9 do { player addAction ["Action #" + str _i, { [0,5,6] call KK_fnc_removeUnknownUserActions; }]; }; Removes all user actions but 0, 5 and 6.

Bottom Section