UserActions

From Bohemia Interactive Community
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Defines an action to be associated with the current object class. Commonly used for operating doors on vehicles.


Class Properties

  • displayName: String - this is the name displayed in the action menu. It supports Structured Text syntax, for including icons or changing the text appearance.
  • displayNameDefault: String - this is the name displayed near mid screen. It supports Structured Text syntax, for including icons or changing the text appearance. Often, only an icon is used in this case.
  • priority: Number - priority value of the action. Actions will be arranged descending according to this. Value can be negative or decimal. Actions with same values will be arranged in order which they were made, newest at the bottom. Typical range is 0 (low priority) to 6 (high priority).
  • radius: Number - defines the range to the object at which the action will become available. Value is in metres.
  • position: String - memory point which acts as the centre for the radius check. May be replaced with named selections (actionNamedSel) in Tac-Ops DLC
  • showWindow: Number or Boolean - if set to 1 or true, players see the displayNameDefault name appear near mid screen as they approach the object if the priority is higher than other available actions. Set to 0 or false to turn it off.
  • hideOnUse: Number or Boolean - if set to 1 or true, it will hide the action menu after selecting that action. If set to 0 or "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.
  • onlyForPlayer: Number or Boolean - probably disables the action appearing in the Action list (option 6) on the main menu for AI. Clarify
  • shortcut: String - one of the key mapping names defined in class CfgDefaultKeysMapping in bin.pbo (e.g. "moveForward").
  • condition: String - code that must return true for the action to be available. Some standard variables can be used in the evaluation. Variable this references the object to which action is attached to.
  • statement: String - code that is executed when the action is activated. Some standard variables can be used in the evaluation. Variable this references object to which action is attached to.
  • aiMaxRange: Number (most likely the radius at which an AI can see/perform? the action Clarify)


Examples

Arma 3 example

class CfgVehicles
{
	class Civilian;

	class Civilian_F : Civilian
	{
		class UserActions
		{
			class GetInformation
			{
				displayName = "Get Information";
				displayNameDefault = "<img image='\a3\missions_f_oldman\data\img\holdactions\holdAction_talk_ca.paa'/>";
				priority = 10;
				radius = 10; // a too small radius might cause the action to not be visible
				position = "camera";
				showWindow = 0;
				hideOnUse = 1;
				onlyForPlayer = 0;
				shortcut = "";
				condition = "alive this && !isPlayer this"; // only show if the unit is alive and is not a player
				statement = "if (selectRandom [true, false]) then { hint 'I do not have information for you!' } else { hint 'I tell you everything I know!' };";
			};
		};
	};
};


See Also