Mission Event Handlers – Arma 3

From Bohemia Interactive Community
Jump to navigation Jump to search
(→‎CommandModeChanged: now returns array as planned)
No edit summary
 
(124 intermediate revisions by 15 users not shown)
Line 1: Line 1:
<!-------------------------------------------------------------------------------------->
{{TOC|side}}
= Mission Event Handlers =
{{Icon|localEffect|32}}


== Description ==
Mission event handlers are specific EHs that are anchored to the running mission and automatically removed when mission is over.
These events fire only on the machine where they have been added.<br>
For all other available EHs see the [[Arma_3:_Event_Handlers|Event Handlers main page]].
 
{{Feature|informative|'''OnUser...''' mission event handlers used in combination with [[getUserInfo]] provide a way to track server users from the very early stage of joining a server to the very last stage of leaving the server. All these event handlers are designed to be used server side and return unique user network id in [[String]] format as the first param. These ids could also be obtained via [[getPlayerID]] and [[allUsers]] script commands. There may be other params specific to each event. See:
{{Columns|3|
* {{Link|#OnUserConnected}}
* {{Link|#OnUserDisconnected}}
* {{Link|#OnUserClientStateChanged}}
* {{Link|#OnUserAdminStateChanged}}
* {{Link|#OnUserSelectedPlayer}}
* {{Link|#OnUserKicked}}
}}
}}


Mission event handlers are specific EHs that are anchored to the running mission and automatically removed when mission is over. For all other available EHs see the [[Arma_3:_Event_Handlers|main page]].


== Related Commands ==
== Related Commands ==
Line 12: Line 24:
* [[removeAllMissionEventHandlers]]
* [[removeAllMissionEventHandlers]]


== Examples ==


<code>handle1 = [[addMissionEventHandler]] ["Loaded",{[[playMusic]] "EventTrack03_F_EPB"}];
== Events ==
[[removeMissionEventHandler]] ["Loaded", handle1];
 
[[addMissionEventHandler]] ["HandleDisconnect",{[[diag_log]] _this}];
{{ConfigPage|start}}
[[removeAllMissionEventHandlers]] "HandleDisconnect";</code>
{{ConfigPage|abc}}
{{ArgTitle|4|BuildingChanged|{{GVI|arma3|1.68}}}}
Fired each time a building model changes, for example due to stages of destruction.
<sqf>
addMissionEventHandler ["BuildingChanged", {
params ["_from", "_to", "_isRuin"];
}];
</sqf>
 
* from: [[Object]] - building it changes from
* to: [[Object]] - building it changes to
* isRuin: [[Boolean]] - [[true]] if changes to ruins
 
 
{{ArgTitle|4|CommandModeChanged|{{GVI|arma3|1.58}}}}
Executes assigned code when user switches to/from HC command mode ({{Controls|LShift|Space}}). Stackable version of [[onCommandModeChanged]].
<sqf>
addMissionEventHandler ["CommandModeChanged", {
params ["_isHighCommand", "_isForced"];
}];
</sqf>
 
* isHighCommand: [[Boolean]] - same as {{hl|_isHighCommand}} param
* isForced: [[Boolean]] - [[true]] if command mode was forced
 
 
{{ArgTitle|4|ControlsShifted|{{GVI|arma3|1.00}}}}
Triggers when control of a vehicle is shifted (pilot->co-pilot, co-pilot->pilot), usually when user performs an [[action]] such as [[action/Arma_3_Actions_List#TakeVehicleControl | TakeVehicleControl]], [[action/Arma_3_Actions_List#SuspendVehicleControl | SuspendVehicleControl]], [[action/Arma_3_Actions_List#UnlockVehicleControl | UnlockVehicleControl]], [[action/Arma_3_Actions_List#LockVehicleControl | LockVehicleControl]], or when [[enableCopilot]] command is used. This event handler will always fire on the PC where [[action]] is triggered as well as where the vehicle is [[Multiplayer Scripting#Locality|local]] at the time. When control of the vehicle is shifted, the locality of the vehicle changes to the locality of the new controller. Since Arma 3 v1.96 this EH is extended with additional params.
<sqf>
addMissionEventHandler ["ControlsShifted", {
params ["_newController", "_oldController", "_vehicle", "_copilotEnabled", "_controlsUnlocked"];
}];
</sqf>
 
* newController: [[Object]] - unit currently controlling the vehicle
* oldController: [[Object]] - unit previously controlling the vehicle
* vehicle: [[Object]] - the vehicle for which controls shifted
* copilotEnabled: [[Boolean]] - [[true]] if copilot is enabled
* controlsUnlocked: [[Boolean]] - [[true]] if controls are unlocked
 
 
{{ArgTitle|4|Draw3D|{{GVI|arma3|0.50}}}}
Runs the EH code each frame in unscheduled environment. Client side EH only (presence of UI).
Will stop executing when UI loses focus (if user Alt+Tabs for example). Usually used with [[drawIcon3D]], [[drawLine3D]].
<sqf>
addMissionEventHandler ["Draw3D", {
// no params
}];
</sqf>
 
{{ArgTitle|4|Drowned|{{GVI|arma3|2.14}}}}
Runs when a vehicle gets drowned (the vehicle is submerged below 'maxFord' for longer than 'waterResistance'). This will cause engine damage and for some vehicles that will render engine unusable until the vehicle/engine is fully repared. Some vehicles can drown but would still be recoverable as they wouldn't be destroyed. The event handler will also fire when vehicle is removed from water, in which case 'drowned' param will change to [[false]]. To check if the engine was damaged by water use [[waterDamaged]] command.
<sqf>
addMissionEventHandler ["Drowned", {
params ["_vehicle", "_drowned"];
}];
</sqf>
 
 
{{ArgTitle|4|EachFrame|{{GVI|arma3|1.58}}}}
Executes assigned code each frame. Stackable version of [[onEachFrame]].
<sqf>
addMissionEventHandler ["EachFrame", {
// no params
}];
</sqf>
 
 
{{ArgTitle|4|Ended|{{GVI|arma3|0.50}}}}
Triggered when mission ends, either using trigger of type "End", [[endMission]] command, [[BIS_fnc_endMission]] function or [[Arma 3: Cheats#ENDMISSION|ENDMISSION]] cheat.
<sqf>
addMissionEventHandler ["Ended", {
params ["_endType"];
}];
</sqf>
 
* endType: [[String]] - mission end type. Used in [[Debriefing]] among other things
 
 
{{ArgTitle|4|MPEnded|{{GVI|arma3|1.60}}}}
Triggered when the server switches off from "playing" state (mission ends, server closes, etc.) It's only for MP games, it is called on server and also on clients. It is not called on clients when client disconnects from server (and mission continues). This EH has no arguments passed to the code.
<sqf>
addMissionEventHandler ["MPEnded", {
// no params
}];
</sqf>
If client code must be executed on disconnect, this code can be used instead:
<sqf>
0 spawn
{
waitUntil { !isNull findDisplay 46 };
findDisplay 46 displayAddEventHandler ["Unload",
{
// code here gets executed on the client at end of mission, whether due to player abort, loss of connection, or mission ended by server; might not work on headless clients
}];
};
</sqf>
 
 
{{ArgTitle|4|EntityCreated|{{GVI|arma3|2.10}}}}
Triggered when an entity is created.
{{Feature|informative|Unlike most event handlers, the argument is entity [[Object]] and not an array containing the entity. However, it is recommended to use [[params]] to make sure the code remains compatible in case the event arguments are expanded in the future.}}
{{Feature|important|This event is called before variable namespace is copied to '''remote''' respawning entity, keep this in mind so your [[setVariable]]s are not overwritten in the next frame. [[#EntityRespawned|EntityRespawned]] always fires after variable namespace is copied to new entity regardless of locality.}}
<sqf>
addMissionEventHandler ["EntityCreated", {
params ["_entity"];
}];
</sqf>


== Events ==


{| class="wikitable sortable"
{{ArgTitle|4|EntityDeleted|{{GVI|arma3|2.18}}}}
! Class
Triggered when an entity is deleted. It only triggers for objects that support the "Deleted" event handler, such as vehicles, soldiers, animals, and houses. Simple objects for example are not supported.
! class="unsortable" | Description
{{Feature|informative|Unlike most event handlers, the argument is entity [[Object]] and not an array containing the entity. However, it is recommended to use [[params]] to make sure the code remains compatible in case the event arguments are expanded in the future.}}
! class="unsortable" | Arguments
<sqf>
! Since
addMissionEventHandler ["EntityDeleted", {
params ["_entity"];
}];
</sqf>


|-
| <!-- Title -->
==== Draw3D ====
| <!-- Description -->
Runs the EH code each frame in unscheduled environment. Client side EH only (presence of UI). Will stop executing when UI loses focus (if user Alt+Tabs for example). Usually used with [[drawIcon3D]], [[drawLine3D]].
| <!-- Arguments -->
| <!-- Since -->
{{GVI|arma3|0.50}}


|-
{{ArgTitle|4|EntityKilled|{{GVI|arma3|1.56}}}}
| <!-- Title -->
Triggered when an entity is killed.
==== Ended ====
<sqf>
| <!-- Description -->
addMissionEventHandler ["EntityKilled", {
Triggered when mission ends, either using trigger of type "End", [[endMission]] command, [[BIS_fnc_endMission]] function or ENDMISSION cheat.
params ["_unit", "_killer", "_instigator", "_useEffects"];
| <!-- Arguments -->
}];
* endType: [[String]] - mission end type. Used in [[Debriefing]] among other things.
</sqf>
| <!-- Since -->
{{GVI|arma3|0.50}}


|-
* unit: [[Object]] - entity that was killed
| <!-- Title -->
* killer: [[Object]] - the killer (vehicle or person)
==== Loaded ====
* {{GVI|arma3|1.66}} instigator: [[Object]] - person who pulled the trigger
| <!-- Description -->
* {{GVI|arma3|1.68}} useEffects: [[Boolean]] - same as ''useEffects'' in [[setDamage]] alt syntax
Triggered when mission is loaded from save.
----
| <!-- Arguments -->
* saveType: [[String]] - save type, can be have following values:
** "save" - custom save, achieved by pressing SAVE button in the pause menu
** "autosave" - automatic checkpoint, saved using [[saveGame]] command
** "continue" - saved when leaving a mission to the main menu
| <!-- Since -->
{{GVI|arma3|0.50}}


|-
It's worth noting that ''instigator'' param is [[objNull]] during road kill. To work around this issue try:
| <!-- Title -->
<sqf>
==== Map ====
addMissionEventHandler ["EntityKilled", {
| <!-- Description -->
params ["_killed", "_killer", "_instigator"];
Triggered when map is opened or closed either by user action or script command [[openMap]].
if (isNull _instigator) then { _instigator = UAVControl vehicle _killer select 0 }; // UAV/UGV player operated road kill
| <!-- Arguments -->
if (isNull _instigator) then { _instigator = _killer }; // player driven vehicle road kill
* mapIsOpened: [[Boolean]] - [[true]] if map is opened
hint format ["Killed By %1", name _instigator];
* mapIsForced: [[Boolean]] - [[true]] if map is forced
}];
</sqf>


| <!-- Since -->
{{GVI|arma3|1.62}}
|-
| <!-- Title -->
==== HandleDisconnect ====
| <!-- Description -->
Triggered when player disconnects from the game. Similar to [[onPlayerDisconnected]] event but can be stacked and contains the unit occupied by player before disconnect. Must be added on the server and triggers only on the server.
| <!-- Arguments -->
* unit: [[Object]] - unit formerly occupied by player
* id: [[Number]] - same as _id in [[onPlayerDisconnected]]
* uid: [[String]] - same as _uid in [[onPlayerDisconnected]]
* name: [[String]] - same as _name in [[onPlayerDisconnected]]
'''Override''': If this EH code returns [[true]], the unit, previously occupied by player, gets transferred to the server, becomes AI and continues to live, even with [[description.ext]] param ''disabledAI = 1;''
| <!-- Since -->
{{GVI|arma3|1.32}}


|-
{{ArgTitle|4|EntityRespawned|{{GVI|arma3|1.56}}}}
| <!-- Title -->
==== EntityRespawned ====
| <!-- Description -->
Triggered when an entity is respawned.
Triggered when an entity is respawned.
| <!-- Arguments -->
<sqf>
addMissionEventHandler ["EntityRespawned", {
params ["_newEntity", "_oldEntity"];
}];
</sqf>
 
* newEntity: [[Object]] - respawned entity
* newEntity: [[Object]] - respawned entity
* oldEntity: [[Object]] - corpse/wreck
* oldEntity: [[Object]] - corpse/wreck
| <!-- Since -->
{{GVI|arma3|1.55}}


|-
| <!-- Title -->
==== EntityKilled ====
| <!-- Description -->
Triggered when an entity is killed.
| <!-- Arguments -->
* killed: [[Object]] - entity that was killed
* killer: [[Object]] - the killer
| <!-- Since -->
{{GVI|arma3|1.55}}


|-
{{ArgTitle|4|ExtensionCallback|{{GVI|arma3|1.96}}}}
| <!-- Title -->
Triggered when an [[callExtension | extension]] calls provided function pointer with 3 params.
==== EachFrame ====
<sqf>
| <!-- Description -->
addMissionEventHandler ["ExtensionCallback", {
Executes assigned code each frame. Stackable version of [[onEachFrame]].
params ["_name", "_function", "_data"];
| <!-- Arguments -->
}];
| <!-- Since -->
</sqf>
{{GVI|arma3|1.57}}
 
* name: [[String]] - user provided param
* function: [[String]] - user provided param
* data: [[String]] - user provided param
 
 
{{ArgTitle|4|GroupCreated|{{GVI|arma3|2.04}}}}
Triggered when a [[Group]] is created. Note that the group contains '''no''' units at that point!
<sqf>
addMissionEventHandler ["GroupCreated", {
params ["_group"];
}];
</sqf>
 
* group: [[Group]] - the created group


|-
| <!-- Title -->
==== MapSingleClick ====
| <!-- Description -->
Executes assigned code when user clicks anywhere on the main map. Stackable version of [[onMapSingleClick]] with some limitations:
* No arguments can be passed to the assigned code in comparison with the original EH
* Does not have engine default functionality override like the original EH
| <!-- Arguments -->
* units: [[Array]] - leader selected units, same as [[groupSelectedUnits]] (same as <tt>_units</tt> param)
* pos: [[Array]] - world [[Position3D]] of the click in format [x,y,0] (same as <tt>_pos</tt> param)
* alt: [[Boolean]] - [[true]] if <tt>Alt</tt> key was pressed (same as <tt>_alt</tt> param)
* shift: [[Boolean]] - [[true]] if <tt>Shift</tt> key was pressed (same as <tt>_shift</tt> param)
| <!-- Since -->
{{GVI|arma3|1.57}}


|-
{{ArgTitle|4|GroupDeleted|{{GVI|arma3|2.04}}}}
| <!-- Title -->
Triggered when a [[Group]] is [[deleteGroup|manually]] or [[deleteGroupWhenEmpty|automatically]] deleted.
==== HCGroupSelectionChanged ====
<sqf>
| <!-- Description -->
addMissionEventHandler ["GroupDeleted", {
Executes assigned code when user selects available HC group (<tt>F1,F2...</tt>). Stackable version of [[onHCGroupSelectionChanged]].
params ["_group"];
| <!-- Arguments -->
}];
* group: [[Group]] - group selected (same as <tt>_group</tt> param)
</sqf>
* isSelected: [[Boolean]] - [[true]] if selected (same as <tt>_isSelected</tt> param)
| <!-- Since -->
{{GVI|arma3|1.57}}


|-
* group: [[Group]] - the deleted group
| <!-- Title -->
==== CommandModeChanged ====
| <!-- Description -->
Executes assigned code when user switches to/from HC command mode (<tt>Left Shift + Space</tt>). Stackable version of [[onCommandModeChanged]].
| <!-- Arguments -->
*  isHighCommand: [[Boolean]] - same as <tt>_isHighCommand</tt> param
* IsForced: [[Boolean]] - [[true]] if command mode was forced 
| <!-- Since -->
{{GVI|arma3|1.57}}


|-
| <!-- Title -->


==== GroupIconClick ====
{{ArgTitle|4|GroupIconClick|{{GVI|arma3|1.58}}}}
| <!-- Description -->
Executes assigned code when user clicks on the HC group icon on the map. If [[groupIconSelectable]] is [[true]], LMB clicking (firing) at the HC group icon on the HUD will also trigger the event. To set group icon selectable use [[setGroupIconsSelectable]]. Stackable version of [[onGroupIconClick]].
Executes assigned code when user clicks on the HC group icon on the map. If [[groupIconSelectable]] is [[true]], LMB clicking (firing) at the HC group icon on the HUD will also trigger the event. To set group icon selectable use [[setGroupIconsSelectable]]. Stackable version of [[onGroupIconClick]].
| <!-- Arguments -->
<sqf>
addMissionEventHandler ["GroupIconClick", {
params [
"_is3D", "_group", "_waypointId",
"_mouseButton", "_posX", "_posY",
"_shift", "_control", "_alt"
];
}];
</sqf>
 
* is3D: [[Boolean]] - [[true]] if HUD icon, [[false]] if main map icon
* is3D: [[Boolean]] - [[true]] if HUD icon, [[false]] if main map icon
* group: [[Group]] - group the icon belonds to
* group: [[Group]] - group the icon belonds to
* wpID: [[Number]] - waypoint ID
* waypointId: [[Number]] - waypoint ID
* mb: [[Number]] - mouse button: 0 - LMB, 1 - RMB (only applicable to IconClick)
* mouseButton: [[Number]] - mouse button: 0 - {{Controls|LMB}}, 1 - {{Controls|RMB}} (only applicable to IconClick)
* posX: [[Number]] - screen X of the mouse
* posX: [[Number]] - screen X of the mouse
* posY: [[Number]] - screen Y of the mouse
* posY: [[Number]] - screen Y of the mouse
* shift: [[Boolean]] - [[true]] if <tt>Shift</tt> key was pressed
* shift: [[Boolean]] - [[true]] if {{Controls|Shift}} key was pressed
* ctrl: [[Boolean]] - [[true]] if <tt>Ctrl</tt> key was pressed
* ctrl: [[Boolean]] - [[true]] if {{Controls|Ctrl}} key was pressed
* alt: [[Boolean]] - [[true]] if <tt>Alt</tt> key was pressed
* alt: [[Boolean]] - [[true]] if {{Controls|Alt}} key was pressed
| <!-- Since -->
 
{{GVI|arma3|1.57}}


|-
{{ArgTitle|4|GroupIconOverEnter|{{GVI|arma3|1.58}}}}
| <!-- Title -->
==== GroupIconOverEnter ====
| <!-- Description -->
'''Continuously''' executes assigned code when user hovers with pointer over the HC group icon, either on the HUD or the main map. [[groupIconSelectable]] must be set to [[true]] for this EH to work at all. To set group icon selectable use [[setGroupIconsSelectable]]. When EH fires over the HUD icon, X and Y coordinates will change depending on the position of the pointer in relation to the icon area. When over main map, the X and Y do not change and indicate icon center. Stackable version of [[onGroupIconOverEnter]].
'''Continuously''' executes assigned code when user hovers with pointer over the HC group icon, either on the HUD or the main map. [[groupIconSelectable]] must be set to [[true]] for this EH to work at all. To set group icon selectable use [[setGroupIconsSelectable]]. When EH fires over the HUD icon, X and Y coordinates will change depending on the position of the pointer in relation to the icon area. When over main map, the X and Y do not change and indicate icon center. Stackable version of [[onGroupIconOverEnter]].
| <!-- Arguments -->
<sqf>
addMissionEventHandler ["GroupIconOverEnter", {
params [
"_is3D", "_group", "_waypointId",
"_posX", "_posY",
"_shift", "_control", "_alt"
];
}];
</sqf>
 
* is3D: [[Boolean]] - [[true]] if HUD icon, [[false]] if main map icon
* is3D: [[Boolean]] - [[true]] if HUD icon, [[false]] if main map icon
* group: [[Group]] - group the icon belonds to
* group: [[Group]] - group the icon belonds to
* wpID: [[Number]] - waypoint ID
* waypointId: [[Number]] - waypoint ID
* posX: [[Number]] - screen X of the mouse
* posX: [[Number]] - screen X of the mouse
* posY: [[Number]] - screen Y of the mouse
* posY: [[Number]] - screen Y of the mouse
* shift: [[Boolean]] - [[true]] if <tt>Shift</tt> key was pressed
* shift: [[Boolean]] - [[true]] if {{Controls|Shift}} key was pressed
* ctrl: [[Boolean]] - [[true]] if <tt>Ctrl</tt> key was pressed
* ctrl: [[Boolean]] - [[true]] if {{Controls|Ctrl}} key was pressed
* alt: [[Boolean]] - [[true]] if <tt>Alt</tt> key was pressed
* alt: [[Boolean]] - [[true]] if {{Controls|Alt}} key was pressed
| <!-- Since -->
 
{{GVI|arma3|1.57}}


|-
{{ArgTitle|4|GroupIconOverLeave|{{GVI|arma3|1.58}}}}
| <!-- Title -->
==== GroupIconOverLeave ====
| <!-- Description -->
Executes assigned code when user moves the pointer away from HC group icon it was over. Fires either for on the HUD icons or the main map HC icons. [[groupIconSelectable]] must be set to [[true]] for this EH to work at all. To set group icon selectable use [[setGroupIconsSelectable]]. Stackable version of [[onGroupIconOverLeave]].
Executes assigned code when user moves the pointer away from HC group icon it was over. Fires either for on the HUD icons or the main map HC icons. [[groupIconSelectable]] must be set to [[true]] for this EH to work at all. To set group icon selectable use [[setGroupIconsSelectable]]. Stackable version of [[onGroupIconOverLeave]].
| <!-- Arguments -->
<sqf>
addMissionEventHandler ["GroupIconOverLeave", {
params [
"_is3D", "_group", "_waypointId",
"_posX", "_posY",
"_shift", "_control", "_alt"
];
}];
</sqf>
 
* is3D: [[Boolean]] - [[true]] if HUD icon, [[false]] if main map icon
* is3D: [[Boolean]] - [[true]] if HUD icon, [[false]] if main map icon
* group: [[Group]] - group the icon belonds to
* group: [[Group]] - group the icon belonds to
* wpID: [[Number]] - waypoint ID
* waypointId: [[Number]] - waypoint ID
* posX: [[Number]] - screen X of the mouse
* posX: [[Number]] - screen X of the mouse
* posY: [[Number]] - screen Y of the mouse (Y is always 0 when leaving HUD icon for some reason)
* posY: [[Number]] - screen Y of the mouse (Y is always 0 when leaving HUD icon for some reason)
* shift: [[Boolean]] - [[true]] if <tt>Shift</tt> key was pressed
* shift: [[Boolean]] - [[true]] if {{Controls|Shift}} key was pressed
* ctrl: [[Boolean]] - [[true]] if <tt>Ctrl</tt> key was pressed
* ctrl: [[Boolean]] - [[true]] if {{Controls|Ctrl}} key was pressed
* alt: [[Boolean]] - [[true]] if <tt>Alt</tt> key was pressed
* alt: [[Boolean]] - [[true]] if {{Controls|Alt}} key was pressed
| <!-- Since -->
 
{{GVI|arma3|1.57}}
 
{{ArgTitle|4|HandleAccTime|{{GVI|arma3|1.90}}}}
Fires when user changes time acceleration with +/- keys in SP or [[setAccTime]] command. If the code returns [[true]] the on-screen message confirming the change is not displayed. Doesn't fire if desired value is already set.
<sqf>
addMissionEventHandler ["HandleAccTime", {
params ["_currentTimeAcc", "_prevTimeAcc", "_messageSuppressed"];
}];
</sqf>
 
* currentTimeAcc: [[Number]] - current value
* prevTimeAcc: [[Number]] - previous value
* messageSuppressed: [[Boolean]] - [[true]] if on-screen message was suppressed
 


|-
{{ArgTitle|4|HandleChatMessage|{{GVI|arma3|2.00}}}}
| <!-- Title -->
Fires when a message is received, before adding it to the chat feed. Fires clientside. The output message could be overridden:
* Return [[true]] to block incoming chat message from being added to the chat feed.
* Return [[String]] to replace the chat message content but not the sender name.
* Return [[Array]] [from, text] to replace both the chat message content and the the sender's name.
{{Feature|informative|Only the last added EH with override will be used to override the message.}}
{{Feature|warning|Do not put any of the chat related script command such as [[systemChat]], [[sideChat]], etc in this EH code as it would naturally cause recursion and the game will freeze.}}
<sqf>
addMissionEventHandler ["HandleChatMessage", {
params ["_channel", "_owner", "_from", "_text", "_person", "_name", "_strID", "_forcedDisplay", "_isPlayerMessage", "_sentenceType", "_chatMessageType", "_params"];
}];
</sqf>


==== PlayerConnected ====
* channel: [[Number]] - see [[Description.ext#disableChannels|radio channel indices]] (16 for system chat message for example)
| <!-- Description -->
* owner: [[Number]] - [[owner]] id of the sender:
** in SP: 0
** in MP with no sender: [[clientOwner]]
** in MP with sender: sender's [[clientOwner]], or if AI - creator id part of [[netId]] of the AI
* from: [[String]] - sender's formatted name as appeared on the chat
* text: [[String]] - the chat message
* person: [[Object]] - sender's object
* name: [[String]] - sender's [[name]], could be different from {{hl|from}}
* strID: [[String]] - sender's network player ID (marker id):
** "-1": means not available
** "0": means [[player | isPlayer]] in SP
** "1": means AI in SP or MP
** >1: [[getPlayerID]] in MP
* forcedDisplay: [[Boolean]] - if the message should be displayed when the chat list is disabled (when [[enableRadio]] is set to [[false]] radio protocol messages won't display)
* isPlayerMessage: [[Boolean]] - if the message is addressed to [[player]]
* sentenceType: [[Number]] - 0: Normal type, 1: Protocol type
* chatMessageType: [[Number]] - 0: Generic type, 1: SimpleMove type, 2: KillConfirmation type
* params: [[Array]] of [[String]]s - sentence parameters, if any
 
 
{{ArgTitle|4|HandleDisconnect|{{GVI|arma3|1.32}}&nbsp;{{Icon|serverExec|32}}}}
Triggered when player disconnects from the game. Similar to [[onPlayerDisconnected]] event but can be stacked and contains the unit occupied by player before disconnect. Must be added on the server and triggers only on the server.
<sqf>
addMissionEventHandler ["HandleDisconnect", {
params ["_unit", "_id", "_uid", "_name"];
true;
}];
</sqf>
 
* unit: [[Object]] - unit formerly occupied by player
* id: [[Number]] - same as _id in [[onPlayerDisconnected]]
* uid: [[String]] - same as _uid in [[onPlayerDisconnected]]
* name: [[String]] - same as _name in [[onPlayerDisconnected]]
'''Override''': if this EH code returns [[true]], the unit, previously occupied by player, gets transferred to the server, becomes AI and continues to live, even with [[Description.ext|description.ext]] param {{hl|disabledAI {{=}} 1;}}.
 
 
{{ArgTitle|4|HCGroupSelectionChanged|{{GVI|arma3|1.58}}}}
Executes assigned code when user selects available HC group ({{hl|F1, F2…}}). Stackable version of [[onHCGroupSelectionChanged]].
<sqf>
addMissionEventHandler ["HCGroupSelectionChanged", {
params ["_group", "_isSelected"];
}];
</sqf>
 
* group: [[Group]] - group selected (same as {{hl|_group}} param)
* isSelected: [[Boolean]] - [[true]] if selected (same as {{hl|_isSelected}} param)
 
 
{{ArgTitle|4|Loaded|{{GVI|arma3|0.50}}}}
Triggered when mission is loaded from save. <br>
{{Feature | Warning | "Loaded" event handler should be added <u>BEFORE</u> the mission is loaded from save. Placing it in a [[Arma 3: Functions Library|function]] with preInit {{=}} 1; usually does the trick.}}
<sqf>
addMissionEventHandler ["Loaded", {
params ["_saveType"];
}];
</sqf>
 
* saveType: [[String]] - save type, can be have following values:
** "save" - custom save, achieved by pressing SAVE button in the pause menu
** "autosave" - automatic checkpoint, saved using [[saveGame]] command
** "continue" - saved when leaving a mission to the main menu
 
 
{{ArgTitle|4|Map|{{GVI|arma3|1.62}}}}
Triggered when map is opened or closed either by user action or script command [[openMap]].
<sqf>
addMissionEventHandler ["Map", {
params ["_mapIsOpened", "_mapIsForced"];
}];
</sqf>
 
* mapIsOpened: [[Boolean]] - [[true]] if map is opened
* mapIsForced: [[Boolean]] - [[true]] if map is forced
 
 
{{ArgTitle|4|MapSingleClick|{{GVI|arma3|1.58}}}}
Executes when the player clicks anywhere on the main map. Stackable version of [[onMapSingleClick]] with the limitation that it does not have the ability to override the click (e.g. to prevent the player from placing the [[customWaypointPosition|custom waypoint]] with {{Controls|LShift|LMB}}). Since the introduction of <sqf inline>_thisArgs</sqf> for [[addMissionEventHandler]] in {{GVI|arma3|2.04}}, this EH also supports custom arguments (just like [[onMapSingleClick]]).
<sqf>
addMissionEventHandler ["MapSingleClick", {
params ["_units", "_pos", "_alt", "_shift"];
}];
</sqf>
* units: [[Array]] - leader selected units, same as [[groupSelectedUnits]] (same as [[onMapSingleClick]]'s {{hl|_units}} variable)
* pos: [[Array]] - world [[Position#Introduction|Position3D]] of the click in format {{hl|[x, y, 0]}} (same as [[onMapSingleClick]]'s {{hl|_pos}} variable)
* alt: [[Boolean]] - [[true]] if {{Controls|Alt}} key was pressed (same as [[onMapSingleClick]]'s {{hl|_alt}} variable)
* shift: [[Boolean]] - [[true]] if {{Controls|Shift}} key was pressed (same as [[onMapSingleClick]]'s {{hl|_shift}} variable)
 
 
{{ArgTitle|4|MarkerCreated|{{GVI|arma3|2.02}}}}
Executes when a marker is created either by a user or via script command.
<sqf>
addMissionEventHandler ["MarkerCreated", {
params ["_marker", "_channelNumber", "_owner", "_local"];
}];
</sqf>
* marker: [[String]] - the name of the created marker, can be used with the [[:Category:Command_Group:_Markers|marker commands]]
* channelNumber: [[Number]] - [[Channel IDs|channel]] in which the marker was created
* owner: [[Object]] - player that created the marker or [[objNull]]
* {{GVI|arma3|2.04}} local: [[Boolean]] - [[true]] if the event originated locally, [[false]] if it came over the network
 
 
{{ArgTitle|4|MarkerDeleted|{{GVI|arma3|2.02}}}}
Executes immediately before a marker is deleted either by a user or via script command.
<sqf>
addMissionEventHandler ["MarkerDeleted", {
params ["_marker", "_local", "_deleter"];
}];
</sqf>
* marker: [[String]] - the name of the deleted marker
* {{GVI|arma3|2.04}} local: [[Boolean]] - [[true]] if the event originated locally, [[false]] if it came over the network
* {{GVI|arma3|2.18}} deleter: [[Object]] - the player/curator unit that deleted the marker
 
 
{{ArgTitle|4|MarkerUpdated|{{GVI|arma3|2.02}}}}
Executes when a marker is changed.
{{Feature|warning|Changing the marker in the EH code will lead to an infinite loop and the game will crash!}}
<sqf>
addMissionEventHandler ["MarkerUpdated", {
params ["_marker", "_local"];
}];
</sqf>
* marker: [[String]] - the name of the marker
* {{GVI|arma3|2.04}} local: [[Boolean]] - [[true]] if the event originated locally, [[false]] if it came over the network
 
 
{{ArgTitle|4|OnUserConnected|{{GVI|arma3|2.06}}&nbsp;{{Icon|serverExec|32}}}}
Executes assigned code on user joining server.
<sqf>
addMissionEventHandler ["OnUserConnected", {
params ["_networkId", "_clientStateNumber", "_clientState"];
}];
</sqf>
* networkId: [[String]] - user network id (see [[getPlayerID]], [[allUsers]])
* clientStateNumber: [[Number]] - client state number (see [[getClientStateNumber]]) - always 1
* clientState: [[String]] - client state (see [[getClientState]]) - always "CREATED"
 
 
{{ArgTitle|4|OnUserDisconnected|{{GVI|arma3|2.06}}&nbsp;{{Icon|serverExec|32}}}}
Executes assigned code on user leaving server.
<sqf>
addMissionEventHandler ["OnUserDisconnected", {
params ["_networkId", "_clientStateNumber", "_clientState"];
}];
</sqf>
* networkId: [[String]] - user network id (see [[getPlayerID]], [[allUsers]])
* clientStateNumber: [[Number]] - client state number (see [[getClientStateNumber]]) - always 0
* clientState: [[String]] - client state (see [[getClientState]]) - always "NONE"
 
 
{{ArgTitle|4|OnUserClientStateChanged|{{GVI|arma3|2.06}}&nbsp;{{Icon|serverExec|32}}}}
Executes assigned code for every stage of user client state change.
<sqf>
addMissionEventHandler ["OnUserClientStateChanged", {
params ["_networkId", "_clientStateNumber", "_clientState"];
}];
</sqf>
* networkId: [[String]] - user network id (see [[getPlayerID]], [[allUsers]])
* clientStateNumber: [[Number]] - client state number (see [[getClientStateNumber]])
* clientState: [[String]] - client state (see [[getClientState]])
 
 
{{ArgTitle|4|OnUserAdminStateChanged|{{GVI|arma3|2.06}}&nbsp;{{Icon|serverExec|32}}}}
Executes assigned code after user logs in, gets voted in or logs out as admin.
<sqf>
addMissionEventHandler ["OnUserAdminStateChanged", {
params ["_networkId", "_loggedIn", "_votedIn"];
}];
</sqf>
* networkId: [[String]] - user network id (see [[getPlayerID]], [[allUsers]])
* loggedIn: [[Boolean]] - [[true]] if user logged in or got voted in as admin, [[false]] if logged out (see [[admin]])
* votedIn: [[Boolean]] - [[true]] if user got voted in as admin, [[false]] otherwise (see [[admin]])
 
 
{{ArgTitle|4|OnUserSelectedPlayer|{{GVI|arma3|2.06}}&nbsp;{{Icon|serverExec|32}}}}
Executes assigned code after player object is selected for user to take over control, the ownership information is broadcast and request to sync is made but the object is still owned by previous owner for a short time.
<sqf>
addMissionEventHandler ["OnUserSelectedPlayer", {
params ["_networkId", "_playerObject", "_attempts"];
}];
</sqf>
* networkId: [[String]] - user network id (see [[getPlayerID]], [[allUsers]])
* playerObject: [[Object]] - player object to be controlled by the user (see [[player]], [[selectPlayer]])
* {{GVI|arma3|2.18}} attempts: [[Number]] - how many times server was trying to obtain non-null playerObject. Current threshold after which the event will fire anyway is 50.
{{Feature|important|This is the earliest the player object is known when player joins the server, but it is not local to the user yet, so there is a wait time depending on network connection. When player respawns, the unit created on the client and so it might take a while before server has valid player object. From Arma 3 v2.18 the server will pospone this event until the object is not null, or until it tried 50 times, whichever is earlier. The best approach to handle this matter and get notified about completion of the transfer of the ownership is to use [[Arma_3:_Event_Handlers#Local|"Local"]] entity event handler, like so:
<sqf>
addMissionEventHandler ["OnUserSelectedPlayer", {
params ["_networkId", "_playerObject", "_attempts"];
_playerObject addEventHandler ["Local",
{
params ["_player"];
_player removeEventHandler ["Local", _thisEventHandler];
// code to handle _player
}];
}];
</sqf>
Note that the player object would change locality again if the user goes to lobby.}}
 
 
{{ArgTitle|4|OnUserKicked|{{GVI|arma3|2.06}}&nbsp;{{Icon|serverExec|32}}}}
Executes assigned code after after a user has been kicked from the server providing kick reason. The possible values for 'kickTypeNumber' and 'kickType' are:<br>0 : {{hl|"TIMEOUT"}}, 1 : {{hl|"DISCONNECTED"}}, 2 : {{hl|"KICKED"}}, 3 : {{hl|"BANNED"}}, 4 : {{hl|"MISSING ADDON"}}, 5 : {{hl|"BAD CD KEY"}}, 6 : {{hl|"CD KEY IN USE"}}, 7 : {{hl|"SESSION LOCKED"}}, 8 : {{hl|"BATTLEYE"}}, 9 : {{hl|"STEAM CHECK"}}, 10 : {{hl|"DLC CONTENT"}}, 11 : {{hl|"GS TIMEOUT"}}, 12 : {{hl|"SCRIPT"}}, 13 : {{hl|"OTHER"}}
<sqf>
addMissionEventHandler ["OnUserKicked", {
params ["_networkId", "_kickTypeNumber", "_kickType", "_kickReason", "_kickMessageIncReason"];
}];
</sqf>
* networkId: [[String]] - user network id (see [[getPlayerID]], [[allUsers]])
* kickTypeNumber: [[Number]] - kick type number (see above)
* kickType: [[String]] - kick type (see above)
* kickReason: [[String]] - reason given for the kick by the admin or by other means
* kickMessageIncReason: [[String]] - formatted engine message including the given reason
 
 
{{ArgTitle|4|PlayerConnected|{{GVI|arma3|1.58}}&nbsp;{{Icon|serverExec|32}}}}
Executes assigned code when client joins the mission in MP. Stackable version of [[onPlayerConnected]].
Executes assigned code when client joins the mission in MP. Stackable version of [[onPlayerConnected]].
| <!-- Arguments -->
<sqf>
* id: [[Number]] - unique DirectPlay ID (very large number). It is also the same id used for user placed markers (same as <tt>_id</tt> param)
addMissionEventHandler ["PlayerConnected", {
* uid: [[String]] - [[getPlayerUID]] of the joining client. The same as Steam ID (same as <tt>_uid</tt> param)
params ["_id", "_uid", "_name", "_jip", "_owner", "_idstr"];
* name: [[String]] - [[profileName]] of the joining client (same as <tt>_name</tt> param)
}];
* jip: [[Boolean]] - [[didJIP]] of the joining client (same as <tt>_jip</tt> param)
</sqf>
* owner: [[Number]] - [[owner]] id of the joining client (same as <tt>_owner</tt> param)
 
| <!-- Since -->
* id: [[Number]] - unique DirectPlay ID (very large number). It is also the same id used for user placed markers (same as {{hl|_id}} param)
{{GVI|arma3|1.57}}
* uid: [[String]] - [[getPlayerUID]] of the joining client. The same as Steam ID (same as {{hl|_uid}} param)
* name: [[String]] - [[profileName]] of the joining client (same as {{hl|_name}} param)
* jip: [[Boolean]] - [[didJIP]] of the joining client (same as {{hl|_jip}} param)
* owner: [[Number]] - [[owner]] id of the joining client (same as {{hl|_owner}} param)
* idstr: [[String]] - same as id but in string format, so could be exactly compared to [[allMapMarkers | user marker]] ids
----
 
If dedicated server was started without '-autoInit' option and this EH was created on server, on first GUI client this EH also fires against server, but after first client.
In mission's {{hl|initServer.sqf}}:
<sqf>
addMissionEventHandler ["PlayerConnected", {
diag_log "Client connected";
diag_log _this;
}];
</sqf>
 
In RPT:
2016/12/16, 15:39:09 "Client connected"
2016/12/16, 15:39:09 [1.51343e+009,"7xxxxxxxxxxxxxxx1","longbow",false,3,"1513430065"]
2016/12/16, 15:39:34  Mission id: 5071d20b183e9580d0ee4f95f413ca18681d6165
2016/12/16, 15:39:34 "Client connected"
2016/12/16, 15:39:34 [2,"","__SERVER__",false,2,"2"]
 
That happens only for GUI clients, if HC client connects first, EH does not fire for server.<br>
If dedicated server was started with -autoInit option, this EH does not fire against server, only for future clients, and all further clients appear to be JIP'ed.<br>
Interesting moment for headless clients, for headless clients instead of [[getPlayerUID]], handler gets string like "HC12160", where '12160' is headless client process ID (matches HC's PID observed in windows task manager)
 


|-
{{ArgTitle|4|PlayerDisconnected|{{GVI|arma3|1.58}}&nbsp;{{Icon|serverExec|32}}}}
| <!-- Title -->
==== PlayerDisconnected ====
| <!-- Description -->
Executes assigned code when client leaves the mission in MP. Stackable version of [[onPlayerDisconnected]].
Executes assigned code when client leaves the mission in MP. Stackable version of [[onPlayerDisconnected]].
| <!-- Arguments -->
<sqf>
* id: [[Number]] - unique DirectPlay ID (very large number). It is also the same id used for user placed markers (same as <tt>_id</tt> param)
addMissionEventHandler ["PlayerDisconnected", {
* uid: [[String]] - [[getPlayerUID]] of the leaving client. The same as Steam ID (same as <tt>_uid</tt> param)
params ["_id", "_uid", "_name", "_jip", "_owner", "_idstr"];
* name: [[String]] - [[profileName]] of the leaving client (same as <tt>_name</tt> param)
}];
* jip: [[Boolean]] - [[didJIP]] of the leaving client (same as <tt>_jip</tt> param)
</sqf>
* owner: [[Number]] - [[owner]] id of the leaving client (same as <tt>_owner</tt> param)
 
| <!-- Since -->
* id: [[Number]] - unique DirectPlay ID (very large number). It is also the same id used for user placed markers (same as {{hl|_id}} param)
{{GVI|arma3|1.57}}
* uid: [[String]] - [[getPlayerUID]] of the leaving client. The same as Steam ID (same as {{hl|_uid}} param)
* name: [[String]] - [[profileName]] of the leaving client (same as {{hl|_name}} param)
* jip: [[Boolean]] - [[didJIP]] of the leaving client (same as {{hl|_jip}} param)
* owner: [[Number]] - [[owner]] id of the leaving client (same as {{hl|_owner}} param)
* idstr: [[String]] - same as id but in string format, so could be exactly compared to [[allMapMarkers | user marker]] ids
 
 
{{ArgTitle|4|PlayerViewChanged|{{GVI|arma3|1.66}}}}
Fired on player view change. Player view changes when player is changing body due to [[teamSwitch]], gets in out of a vehicle or operates UAV for example.
<sqf>
addMissionEventHandler ["PlayerViewChanged", {
params [
"_oldUnit", "_newUnit", "_vehicleIn",
"_oldCameraOn", "_newCameraOn", "_uav"
];
}];
</sqf>
 
* oldUnit: [[Object]] - player body before EH fired
* newUnit: [[Object]] - player body after EH fired
* vehicleIn: [[Object]] - vehicle player is in ([[objNull]] if not in vehicle)
* oldCameraOn: [[Object]] - [[cameraOn]] before EH fired
* newCameraOn: [[Object]] - [[cameraOn]] after EH fired
* uav: [[Object]] - UAV reference if player is operating one ([[objNull]] if not operating UAV)
 
 
{{ArgTitle|4|PreloadStarted|{{GVI|arma3|1.58}}}}
Executes assigned code before the mission preload screen. Stackable version of [[onPreloadStarted]].<br>
{{Feature | important | This event handler also fires on client after user closes the main map. }}
<sqf>
addMissionEventHandler ["PreloadStarted", {
// no params
}];
</sqf>
 
 
{{ArgTitle|4|PreloadFinished|{{GVI|arma3|1.58}}}}
Executes assigned code after the mission preload screen. Stackable version of [[onPreloadFinished]].<br>
{{Feature | important | This event handler also fires on client after user closes the main map. }}
<sqf>
addMissionEventHandler ["PreloadFinished", {
// no params
}];
</sqf>
 
{{ArgTitle|4|ProjectileCreated|{{GVI|arma3|2.10}}}}
Triggered when a projectile is created.
<sqf>
addMissionEventHandler ["ProjectileCreated", {
params ["_projectile"];
}];
</sqf>
 
 
 
{{ArgTitle|4|ScriptError|{{GVI|arma3|2.14}}}}
Triggered when a script error occurs. See also the {{hl|{{Link|Arma 3: Startup Parameters#Developer Options|-showScriptErrors}}}} {{Link|Arma 3: Startup Parameters|startup parameter}}.
 
{{Feature|informative|
Event Handlers have a recursion check. Most of them have a level limit set to '''1''';
'''ScriptError''' has it set to '''2''' - meaning that an error occuring inside the Event Handler will trigger once more the EH, but no more than two times total.
}}
 
<sqf>
addMissionEventHandler ["ScriptError", {
params ["_errorText", "_sourceFile", "_lineNumber", "_errorPos", "_content", "_stackTraceOutput"];
}];
</sqf>
 
* errorText: [[String]] - e.g. "Zero Divisor"
* sourceFile: [[String]] - empty string if spawned [[Code]]
* lineNumber: [[Number]] - script's line number
* errorPos: [[Number]] - script's error byte position in the script ''content''
* content: [[String]] - the whole script's [[Code]] as [[String]]
* stackTraceOutput: [[Array]] - see [[diag_stacktrace]] output
 
 
==== SelectedActionPerformed ====
RTM helicopter user action event
<sqf>
addMissionEventHandler ["SelectedActionPerformed", {
params ["_caller", "_target", "_enumNumber", "_actionId"];
}];
</sqf>


|-
{{Feature|important|Limited or non-existent functionality}}
| <!-- Title -->
 
==== TeamSwitch ====
 
| <!-- Description -->
==== SelectedActionChanged ====
RTM helicopter user action event
<sqf>
addMissionEventHandler ["SelectedActionChanged", {
params ["_caller", "_target", "_enumNumber", "_actionId"];
}];
</sqf>
 
{{Feature|important|Limited or non-existent functionality}}
 
 
==== SelectedRotorLibActionPerformed ====
RTM helicopter user action event
<sqf>
addMissionEventHandler ["SelectedRotorLibActionPerformed", {
params ["_caller", "_target", "_enumNumber", "_actionId"];
}];
</sqf>
 
{{Feature|important|Works only for key press combination {{hl|RightCtrl}} + {{hl|W}}, which is the binding for helicopter wheels brakes. It fires with or without Advanced Flight Model enabled. The enum number returned is 4 and 5, probably because the enum is structured like this:<br>
0: HelicopterAutoTrimOn<br>
1: HelicopterAutoTrimOff<br>
2: HelicopterTrimOn<br>
3: HelicopterTrimOff<br>
4: WheelsBrakeOn<br>
5: WheelsBrakeOff
}}
 
 
==== SelectedRotorLibActionChanged ====
RTM helicopter user action event
<sqf>
addMissionEventHandler ["SelectedRotorLibActionChanged", {
params ["_caller", "_target", "_enumNumber", "_actionId"];
}];
</sqf>
 
{{Feature|important|Limited or non-existent functionality}}
 
{{ArgTitle|4|Service|{{GVI|arma3|2.12}}}}
Executes assigned code when a serviced vehicle gets rearmed, repaired or refueled. The code executes with interval while the serviced vehicle receives service. If the code returns [[true]] the default on-screen service message is not shown.
<sqf>
addMissionEventHandler ["Service", {
params ["_serviceVehicle", "_servicedVehicle", "_serviceType", "_needsService", "_autoSupply"];
}];
</sqf>
 
* serviceVehicle: [[Object]] - service vehicle
* servicedVehicle: [[Object]] - vehicle receiving service
* serviceType: [[Number]] - 0 - MINOR REPAIR, 1 - REPAIR, 2 - REFUEL, 3 - REARM
* needsService: [[Number]] - how much serviced vehicle [[needService | needsSevice]], 0..1 where 0 - no need, 1 - need a lot
* autoSupply: [[Boolean]] - [[true]] if supply started by proximity, [[false]] if supply started due to user action
 
{{ArgTitle|4|TeamSwitch|{{GVI|arma3|1.58}}}}
Executes assigned code when player teamswitches. Stackable version of [[onTeamSwitch]].
Executes assigned code when player teamswitches. Stackable version of [[onTeamSwitch]].
| <!-- Arguments -->
<sqf>
* from: [[Object]] - switching from unit (same as <tt>_from</tt> param)
addMissionEventHandler ["TeamSwitch", {
* to: [[Object]] - switching to unit (same as <tt>_to</tt> param)
params ["_previousUnit", "_newUnit"];
| <!-- Since -->
}];
{{GVI|arma3|1.57}}
</sqf>
 
* previousUnit: [[Object]] - switching from unit (same as {{hl|_from}} param)
* newUnit: [[Object]] - switching to unit (same as {{hl|_to}} param)
 
{{ArgTitle|4|UAVCrewCreated|{{GVI|arma3|2.14}}}}
Fires when UAV or UGV is assembled from Backpack after the AI crew is created
<sqf>
addMissionEventHandler ["UAVCrewCreated", {
params ["_uav", "_driver", "_gunner"];
}];
</sqf>
 
* uav: [[Object]] - the assembled weapon
* driver: [[Object]] - AI driver
* gunner: [[Object]] - AI gunner
 


|-
{{ConfigPage|end}}
| <!-- Title -->
==== PreloadStarted ====
| <!-- Description -->
Executes assigned code before the mission preload screen. Stackable version of [[onPreloadStarted]].
| <!-- Arguments -->
| <!-- Since -->
{{GVI|arma3|1.57}}


|-
| <!-- Title -->
==== PreloadFinished ====
| <!-- Description -->
Executes assigned code after the mission preload screen. Stackable version of [[onPreloadFinished]].
| <!-- Arguments -->
| <!-- Since -->
{{GVI|arma3|1.57}}


|}
[[Category: Event Handlers]]

Latest revision as of 01:29, 12 February 2024

LELocal

Mission event handlers are specific EHs that are anchored to the running mission and automatically removed when mission is over. These events fire only on the machine where they have been added.
For all other available EHs see the Event Handlers main page.

OnUser... mission event handlers used in combination with getUserInfo provide a way to track server users from the very early stage of joining a server to the very last stage of leaving the server. All these event handlers are designed to be used server side and return unique user network id in String format as the first param. These ids could also be obtained via getPlayerID and allUsers script commands. There may be other params specific to each event. See:


Related Commands


Events

BuildingChanged

Fired each time a building model changes, for example due to stages of destruction.

addMissionEventHandler ["BuildingChanged", { params ["_from", "_to", "_isRuin"]; }];

  • from: Object - building it changes from
  • to: Object - building it changes to
  • isRuin: Boolean - true if changes to ruins


CommandModeChanged

Executes assigned code when user switches to/from HC command mode (⇧ Shift + Space). Stackable version of onCommandModeChanged.

addMissionEventHandler ["CommandModeChanged", { params ["_isHighCommand", "_isForced"]; }];

  • isHighCommand: Boolean - same as _isHighCommand param
  • isForced: Boolean - true if command mode was forced


ControlsShifted

Triggers when control of a vehicle is shifted (pilot->co-pilot, co-pilot->pilot), usually when user performs an action such as TakeVehicleControl, SuspendVehicleControl, UnlockVehicleControl, LockVehicleControl, or when enableCopilot command is used. This event handler will always fire on the PC where action is triggered as well as where the vehicle is local at the time. When control of the vehicle is shifted, the locality of the vehicle changes to the locality of the new controller. Since Arma 3 v1.96 this EH is extended with additional params.

addMissionEventHandler ["ControlsShifted", { params ["_newController", "_oldController", "_vehicle", "_copilotEnabled", "_controlsUnlocked"]; }];

  • newController: Object - unit currently controlling the vehicle
  • oldController: Object - unit previously controlling the vehicle
  • vehicle: Object - the vehicle for which controls shifted
  • copilotEnabled: Boolean - true if copilot is enabled
  • controlsUnlocked: Boolean - true if controls are unlocked


Draw3D

Runs the EH code each frame in unscheduled environment. Client side EH only (presence of UI). Will stop executing when UI loses focus (if user Alt+Tabs for example). Usually used with drawIcon3D, drawLine3D.

addMissionEventHandler ["Draw3D", { // no params }];

Drowned

Runs when a vehicle gets drowned (the vehicle is submerged below 'maxFord' for longer than 'waterResistance'). This will cause engine damage and for some vehicles that will render engine unusable until the vehicle/engine is fully repared. Some vehicles can drown but would still be recoverable as they wouldn't be destroyed. The event handler will also fire when vehicle is removed from water, in which case 'drowned' param will change to false. To check if the engine was damaged by water use waterDamaged command.

addMissionEventHandler ["Drowned", { params ["_vehicle", "_drowned"]; }];


EachFrame

Executes assigned code each frame. Stackable version of onEachFrame.

addMissionEventHandler ["EachFrame", { // no params }];


Ended

Triggered when mission ends, either using trigger of type "End", endMission command, BIS_fnc_endMission function or ENDMISSION cheat.

addMissionEventHandler ["Ended", { params ["_endType"]; }];


MPEnded

Triggered when the server switches off from "playing" state (mission ends, server closes, etc.) It's only for MP games, it is called on server and also on clients. It is not called on clients when client disconnects from server (and mission continues). This EH has no arguments passed to the code.

addMissionEventHandler ["MPEnded", { // no params }];
If client code must be executed on disconnect, this code can be used instead:
0 spawn { waitUntil { !isNull findDisplay 46 }; findDisplay 46 displayAddEventHandler ["Unload", { // code here gets executed on the client at end of mission, whether due to player abort, loss of connection, or mission ended by server; might not work on headless clients }]; };


EntityCreated

Triggered when an entity is created.

Unlike most event handlers, the argument is entity Object and not an array containing the entity. However, it is recommended to use params to make sure the code remains compatible in case the event arguments are expanded in the future.
This event is called before variable namespace is copied to remote respawning entity, keep this in mind so your setVariables are not overwritten in the next frame. EntityRespawned always fires after variable namespace is copied to new entity regardless of locality.

addMissionEventHandler ["EntityCreated", { params ["_entity"]; }];


EntityDeleted

Triggered when an entity is deleted. It only triggers for objects that support the "Deleted" event handler, such as vehicles, soldiers, animals, and houses. Simple objects for example are not supported.

Unlike most event handlers, the argument is entity Object and not an array containing the entity. However, it is recommended to use params to make sure the code remains compatible in case the event arguments are expanded in the future.

addMissionEventHandler ["EntityDeleted", { params ["_entity"]; }];


EntityKilled

Triggered when an entity is killed.

addMissionEventHandler ["EntityKilled", { params ["_unit", "_killer", "_instigator", "_useEffects"]; }];

  • unit: Object - entity that was killed
  • killer: Object - the killer (vehicle or person)
  • Arma 3 logo black.png1.66 instigator: Object - person who pulled the trigger
  • Arma 3 logo black.png1.68 useEffects: Boolean - same as useEffects in setDamage alt syntax

It's worth noting that instigator param is objNull during road kill. To work around this issue try:

addMissionEventHandler ["EntityKilled", { params ["_killed", "_killer", "_instigator"]; if (isNull _instigator) then { _instigator = UAVControl vehicle _killer select 0 }; // UAV/UGV player operated road kill if (isNull _instigator) then { _instigator = _killer }; // player driven vehicle road kill hint format ["Killed By %1", name _instigator]; }];


EntityRespawned

Triggered when an entity is respawned.

addMissionEventHandler ["EntityRespawned", { params ["_newEntity", "_oldEntity"]; }];

  • newEntity: Object - respawned entity
  • oldEntity: Object - corpse/wreck


ExtensionCallback

Triggered when an extension calls provided function pointer with 3 params.

addMissionEventHandler ["ExtensionCallback", { params ["_name", "_function", "_data"]; }];

  • name: String - user provided param
  • function: String - user provided param
  • data: String - user provided param


GroupCreated

Triggered when a Group is created. Note that the group contains no units at that point!

addMissionEventHandler ["GroupCreated", { params ["_group"]; }];

  • group: Group - the created group


GroupDeleted

Triggered when a Group is manually or automatically deleted.

addMissionEventHandler ["GroupDeleted", { params ["_group"]; }];

  • group: Group - the deleted group


GroupIconClick

Executes assigned code when user clicks on the HC group icon on the map. If groupIconSelectable is true, LMB clicking (firing) at the HC group icon on the HUD will also trigger the event. To set group icon selectable use setGroupIconsSelectable. Stackable version of onGroupIconClick.

addMissionEventHandler ["GroupIconClick", { params [ "_is3D", "_group", "_waypointId", "_mouseButton", "_posX", "_posY", "_shift", "_control", "_alt" ]; }];

  • is3D: Boolean - true if HUD icon, false if main map icon
  • group: Group - group the icon belonds to
  • waypointId: Number - waypoint ID
  • mouseButton: Number - mouse button: 0 - Left Mouse Button, 1 - Right Mouse Button (only applicable to IconClick)
  • posX: Number - screen X of the mouse
  • posY: Number - screen Y of the mouse
  • shift: Boolean - true if ⇧ Shift key was pressed
  • ctrl: Boolean - true if Ctrl key was pressed
  • alt: Boolean - true if Alt key was pressed


GroupIconOverEnter

Continuously executes assigned code when user hovers with pointer over the HC group icon, either on the HUD or the main map. groupIconSelectable must be set to true for this EH to work at all. To set group icon selectable use setGroupIconsSelectable. When EH fires over the HUD icon, X and Y coordinates will change depending on the position of the pointer in relation to the icon area. When over main map, the X and Y do not change and indicate icon center. Stackable version of onGroupIconOverEnter.

addMissionEventHandler ["GroupIconOverEnter", { params [ "_is3D", "_group", "_waypointId", "_posX", "_posY", "_shift", "_control", "_alt" ]; }];


GroupIconOverLeave

Executes assigned code when user moves the pointer away from HC group icon it was over. Fires either for on the HUD icons or the main map HC icons. groupIconSelectable must be set to true for this EH to work at all. To set group icon selectable use setGroupIconsSelectable. Stackable version of onGroupIconOverLeave.

addMissionEventHandler ["GroupIconOverLeave", { params [ "_is3D", "_group", "_waypointId", "_posX", "_posY", "_shift", "_control", "_alt" ]; }];

  • is3D: Boolean - true if HUD icon, false if main map icon
  • group: Group - group the icon belonds to
  • waypointId: Number - waypoint ID
  • posX: Number - screen X of the mouse
  • posY: Number - screen Y of the mouse (Y is always 0 when leaving HUD icon for some reason)
  • shift: Boolean - true if ⇧ Shift key was pressed
  • ctrl: Boolean - true if Ctrl key was pressed
  • alt: Boolean - true if Alt key was pressed


HandleAccTime

Fires when user changes time acceleration with +/- keys in SP or setAccTime command. If the code returns true the on-screen message confirming the change is not displayed. Doesn't fire if desired value is already set.

addMissionEventHandler ["HandleAccTime", { params ["_currentTimeAcc", "_prevTimeAcc", "_messageSuppressed"]; }];

  • currentTimeAcc: Number - current value
  • prevTimeAcc: Number - previous value
  • messageSuppressed: Boolean - true if on-screen message was suppressed


HandleChatMessage

Fires when a message is received, before adding it to the chat feed. Fires clientside. The output message could be overridden:

  • Return true to block incoming chat message from being added to the chat feed.
  • Return String to replace the chat message content but not the sender name.
  • Return Array [from, text] to replace both the chat message content and the the sender's name.
Only the last added EH with override will be used to override the message.
Do not put any of the chat related script command such as systemChat, sideChat, etc in this EH code as it would naturally cause recursion and the game will freeze.

addMissionEventHandler ["HandleChatMessage", { params ["_channel", "_owner", "_from", "_text", "_person", "_name", "_strID", "_forcedDisplay", "_isPlayerMessage", "_sentenceType", "_chatMessageType", "_params"]; }];

  • channel: Number - see radio channel indices (16 for system chat message for example)
  • owner: Number - owner id of the sender:
  • from: String - sender's formatted name as appeared on the chat
  • text: String - the chat message
  • person: Object - sender's object
  • name: String - sender's name, could be different from from
  • strID: String - sender's network player ID (marker id):
  • forcedDisplay: Boolean - if the message should be displayed when the chat list is disabled (when enableRadio is set to false radio protocol messages won't display)
  • isPlayerMessage: Boolean - if the message is addressed to player
  • sentenceType: Number - 0: Normal type, 1: Protocol type
  • chatMessageType: Number - 0: Generic type, 1: SimpleMove type, 2: KillConfirmation type
  • params: Array of Strings - sentence parameters, if any


HandleDisconnect

Triggered when player disconnects from the game. Similar to onPlayerDisconnected event but can be stacked and contains the unit occupied by player before disconnect. Must be added on the server and triggers only on the server.

addMissionEventHandler ["HandleDisconnect", { params ["_unit", "_id", "_uid", "_name"]; true; }];

Override: if this EH code returns true, the unit, previously occupied by player, gets transferred to the server, becomes AI and continues to live, even with description.ext param disabledAI = 1;.


HCGroupSelectionChanged

Executes assigned code when user selects available HC group (F1, F2…). Stackable version of onHCGroupSelectionChanged.

addMissionEventHandler ["HCGroupSelectionChanged", { params ["_group", "_isSelected"]; }];

  • group: Group - group selected (same as _group param)
  • isSelected: Boolean - true if selected (same as _isSelected param)


Loaded

Triggered when mission is loaded from save.

"Loaded" event handler should be added BEFORE the mission is loaded from save. Placing it in a function with preInit = 1; usually does the trick.

addMissionEventHandler ["Loaded", { params ["_saveType"]; }];

  • saveType: String - save type, can be have following values:
    • "save" - custom save, achieved by pressing SAVE button in the pause menu
    • "autosave" - automatic checkpoint, saved using saveGame command
    • "continue" - saved when leaving a mission to the main menu


Map

Triggered when map is opened or closed either by user action or script command openMap.

addMissionEventHandler ["Map", { params ["_mapIsOpened", "_mapIsForced"]; }];


MapSingleClick

Executes when the player clicks anywhere on the main map. Stackable version of onMapSingleClick with the limitation that it does not have the ability to override the click (e.g. to prevent the player from placing the custom waypoint with ⇧ Shift + Left Mouse Button). Since the introduction of _thisArgs for addMissionEventHandler in Arma 3 logo black.png2.04, this EH also supports custom arguments (just like onMapSingleClick).

addMissionEventHandler ["MapSingleClick", { params ["_units", "_pos", "_alt", "_shift"]; }];


MarkerCreated

Executes when a marker is created either by a user or via script command.

addMissionEventHandler ["MarkerCreated", { params ["_marker", "_channelNumber", "_owner", "_local"]; }];


MarkerDeleted

Executes immediately before a marker is deleted either by a user or via script command.

addMissionEventHandler ["MarkerDeleted", { params ["_marker", "_local", "_deleter"]; }];

  • marker: String - the name of the deleted marker
  • Arma 3 logo black.png2.04 local: Boolean - true if the event originated locally, false if it came over the network
  • Arma 3 logo black.png2.18 deleter: Object - the player/curator unit that deleted the marker


MarkerUpdated

Executes when a marker is changed.

Changing the marker in the EH code will lead to an infinite loop and the game will crash!

addMissionEventHandler ["MarkerUpdated", { params ["_marker", "_local"]; }];

  • marker: String - the name of the marker
  • Arma 3 logo black.png2.04 local: Boolean - true if the event originated locally, false if it came over the network


OnUserConnected

Executes assigned code on user joining server.

addMissionEventHandler ["OnUserConnected", { params ["_networkId", "_clientStateNumber", "_clientState"]; }];


OnUserDisconnected

Executes assigned code on user leaving server.

addMissionEventHandler ["OnUserDisconnected", { params ["_networkId", "_clientStateNumber", "_clientState"]; }];


OnUserClientStateChanged

Executes assigned code for every stage of user client state change.

addMissionEventHandler ["OnUserClientStateChanged", { params ["_networkId", "_clientStateNumber", "_clientState"]; }];


OnUserAdminStateChanged

Executes assigned code after user logs in, gets voted in or logs out as admin.

addMissionEventHandler ["OnUserAdminStateChanged", { params ["_networkId", "_loggedIn", "_votedIn"]; }];


OnUserSelectedPlayer

Executes assigned code after player object is selected for user to take over control, the ownership information is broadcast and request to sync is made but the object is still owned by previous owner for a short time.

addMissionEventHandler ["OnUserSelectedPlayer", { params ["_networkId", "_playerObject", "_attempts"]; }];

  • networkId: String - user network id (see getPlayerID, allUsers)
  • playerObject: Object - player object to be controlled by the user (see player, selectPlayer)
  • Arma 3 logo black.png2.18 attempts: Number - how many times server was trying to obtain non-null playerObject. Current threshold after which the event will fire anyway is 50.
This is the earliest the player object is known when player joins the server, but it is not local to the user yet, so there is a wait time depending on network connection. When player respawns, the unit created on the client and so it might take a while before server has valid player object. From Arma 3 v2.18 the server will pospone this event until the object is not null, or until it tried 50 times, whichever is earlier. The best approach to handle this matter and get notified about completion of the transfer of the ownership is to use "Local" entity event handler, like so:

addMissionEventHandler ["OnUserSelectedPlayer", { params ["_networkId", "_playerObject", "_attempts"]; _playerObject addEventHandler ["Local", { params ["_player"]; _player removeEventHandler ["Local", _thisEventHandler]; // code to handle _player }]; }];

Note that the player object would change locality again if the user goes to lobby.


OnUserKicked

Executes assigned code after after a user has been kicked from the server providing kick reason. The possible values for 'kickTypeNumber' and 'kickType' are:
0 : "TIMEOUT", 1 : "DISCONNECTED", 2 : "KICKED", 3 : "BANNED", 4 : "MISSING ADDON", 5 : "BAD CD KEY", 6 : "CD KEY IN USE", 7 : "SESSION LOCKED", 8 : "BATTLEYE", 9 : "STEAM CHECK", 10 : "DLC CONTENT", 11 : "GS TIMEOUT", 12 : "SCRIPT", 13 : "OTHER"

addMissionEventHandler ["OnUserKicked", { params ["_networkId", "_kickTypeNumber", "_kickType", "_kickReason", "_kickMessageIncReason"]; }];

  • networkId: String - user network id (see getPlayerID, allUsers)
  • kickTypeNumber: Number - kick type number (see above)
  • kickType: String - kick type (see above)
  • kickReason: String - reason given for the kick by the admin or by other means
  • kickMessageIncReason: String - formatted engine message including the given reason


PlayerConnected

Executes assigned code when client joins the mission in MP. Stackable version of onPlayerConnected.

addMissionEventHandler ["PlayerConnected", { params ["_id", "_uid", "_name", "_jip", "_owner", "_idstr"]; }];

  • id: Number - unique DirectPlay ID (very large number). It is also the same id used for user placed markers (same as _id param)
  • uid: String - getPlayerUID of the joining client. The same as Steam ID (same as _uid param)
  • name: String - profileName of the joining client (same as _name param)
  • jip: Boolean - didJIP of the joining client (same as _jip param)
  • owner: Number - owner id of the joining client (same as _owner param)
  • idstr: String - same as id but in string format, so could be exactly compared to user marker ids

If dedicated server was started without '-autoInit' option and this EH was created on server, on first GUI client this EH also fires against server, but after first client. In mission's initServer.sqf:

addMissionEventHandler ["PlayerConnected", { diag_log "Client connected"; diag_log _this; }];

In RPT:

2016/12/16, 15:39:09 "Client connected"
2016/12/16, 15:39:09 [1.51343e+009,"7xxxxxxxxxxxxxxx1","longbow",false,3,"1513430065"]
2016/12/16, 15:39:34  Mission id: 5071d20b183e9580d0ee4f95f413ca18681d6165
2016/12/16, 15:39:34 "Client connected"
2016/12/16, 15:39:34 [2,"","__SERVER__",false,2,"2"]

That happens only for GUI clients, if HC client connects first, EH does not fire for server.
If dedicated server was started with -autoInit option, this EH does not fire against server, only for future clients, and all further clients appear to be JIP'ed.
Interesting moment for headless clients, for headless clients instead of getPlayerUID, handler gets string like "HC12160", where '12160' is headless client process ID (matches HC's PID observed in windows task manager)


PlayerDisconnected

Executes assigned code when client leaves the mission in MP. Stackable version of onPlayerDisconnected.

addMissionEventHandler ["PlayerDisconnected", { params ["_id", "_uid", "_name", "_jip", "_owner", "_idstr"]; }];

  • id: Number - unique DirectPlay ID (very large number). It is also the same id used for user placed markers (same as _id param)
  • uid: String - getPlayerUID of the leaving client. The same as Steam ID (same as _uid param)
  • name: String - profileName of the leaving client (same as _name param)
  • jip: Boolean - didJIP of the leaving client (same as _jip param)
  • owner: Number - owner id of the leaving client (same as _owner param)
  • idstr: String - same as id but in string format, so could be exactly compared to user marker ids


PlayerViewChanged

Fired on player view change. Player view changes when player is changing body due to teamSwitch, gets in out of a vehicle or operates UAV for example.

addMissionEventHandler ["PlayerViewChanged", { params [ "_oldUnit", "_newUnit", "_vehicleIn", "_oldCameraOn", "_newCameraOn", "_uav" ]; }];

  • oldUnit: Object - player body before EH fired
  • newUnit: Object - player body after EH fired
  • vehicleIn: Object - vehicle player is in (objNull if not in vehicle)
  • oldCameraOn: Object - cameraOn before EH fired
  • newCameraOn: Object - cameraOn after EH fired
  • uav: Object - UAV reference if player is operating one (objNull if not operating UAV)


PreloadStarted

Executes assigned code before the mission preload screen. Stackable version of onPreloadStarted.

This event handler also fires on client after user closes the main map.

addMissionEventHandler ["PreloadStarted", { // no params }];


PreloadFinished

Executes assigned code after the mission preload screen. Stackable version of onPreloadFinished.

This event handler also fires on client after user closes the main map.

addMissionEventHandler ["PreloadFinished", { // no params }];

ProjectileCreated

Triggered when a projectile is created.

addMissionEventHandler ["ProjectileCreated", { params ["_projectile"]; }];


ScriptError

Triggered when a script error occurs. See also the -showScriptErrors startup parameter.

Event Handlers have a recursion check. Most of them have a level limit set to 1; ScriptError has it set to 2 - meaning that an error occuring inside the Event Handler will trigger once more the EH, but no more than two times total.

addMissionEventHandler ["ScriptError", { params ["_errorText", "_sourceFile", "_lineNumber", "_errorPos", "_content", "_stackTraceOutput"]; }];


SelectedActionPerformed

RTM helicopter user action event

addMissionEventHandler ["SelectedActionPerformed", { params ["_caller", "_target", "_enumNumber", "_actionId"]; }];

Limited or non-existent functionality


SelectedActionChanged

RTM helicopter user action event

addMissionEventHandler ["SelectedActionChanged", { params ["_caller", "_target", "_enumNumber", "_actionId"]; }];

Limited or non-existent functionality


SelectedRotorLibActionPerformed

RTM helicopter user action event

addMissionEventHandler ["SelectedRotorLibActionPerformed", { params ["_caller", "_target", "_enumNumber", "_actionId"]; }];

Works only for key press combination RightCtrl + W, which is the binding for helicopter wheels brakes. It fires with or without Advanced Flight Model enabled. The enum number returned is 4 and 5, probably because the enum is structured like this:

0: HelicopterAutoTrimOn
1: HelicopterAutoTrimOff
2: HelicopterTrimOn
3: HelicopterTrimOff
4: WheelsBrakeOn

5: WheelsBrakeOff


SelectedRotorLibActionChanged

RTM helicopter user action event

addMissionEventHandler ["SelectedRotorLibActionChanged", { params ["_caller", "_target", "_enumNumber", "_actionId"]; }];

Limited or non-existent functionality

Service

Executes assigned code when a serviced vehicle gets rearmed, repaired or refueled. The code executes with interval while the serviced vehicle receives service. If the code returns true the default on-screen service message is not shown.

addMissionEventHandler ["Service", { params ["_serviceVehicle", "_servicedVehicle", "_serviceType", "_needsService", "_autoSupply"]; }];

  • serviceVehicle: Object - service vehicle
  • servicedVehicle: Object - vehicle receiving service
  • serviceType: Number - 0 - MINOR REPAIR, 1 - REPAIR, 2 - REFUEL, 3 - REARM
  • needsService: Number - how much serviced vehicle needsSevice, 0..1 where 0 - no need, 1 - need a lot
  • autoSupply: Boolean - true if supply started by proximity, false if supply started due to user action

TeamSwitch

Executes assigned code when player teamswitches. Stackable version of onTeamSwitch.

addMissionEventHandler ["TeamSwitch", { params ["_previousUnit", "_newUnit"]; }];

  • previousUnit: Object - switching from unit (same as _from param)
  • newUnit: Object - switching to unit (same as _to param)

UAVCrewCreated

Fires when UAV or UGV is assembled from Backpack after the AI crew is created

addMissionEventHandler ["UAVCrewCreated", { params ["_uav", "_driver", "_gunner"]; }];