Event Handlers – Arma 3
Killzone Kid (talk | contribs) (curator) |
(Page reorganized) |
||
Line 1: | Line 1: | ||
=Introduction= | __NOEDITSECTION__ | ||
== Introduction == | |||
An event handler (abbreviated to EH) allows you to automatically monitor and then execute custom code upon particular events being triggered. | An event handler (abbreviated to EH) allows you to automatically monitor and then execute custom code upon particular events being triggered. | ||
These event handlers relate to commands such as: [[addEventHandler]], [[removeEventHandler]], [[removeAllEventHandlers]]. | These event handlers relate to commands such as: [[addEventHandler]], [[removeEventHandler]], [[removeAllEventHandlers]]. | ||
== General MP Note == | === General MP Note === | ||
As opposed to OFP event handlers, a respawned unit retains the EHs it had before, so it is no longer required to re-add EHs after respawning. | As opposed to OFP event handlers, a respawned unit retains the EHs it had before, so it is no longer required to re-add EHs after respawning. | ||
Line 10: | Line 12: | ||
The MP event handlers "MPHit", "MPKilled" and "MPRespawn" have to be assigned to the object by using [[addMPEventHandler]]. | The MP event handlers "MPHit", "MPKilled" and "MPRespawn" have to be assigned to the object by using [[addMPEventHandler]]. | ||
== Event Scripts == | === Event Scripts === | ||
See also: [[Event Scripts]] for special event triggered scripts. | See also: [[Event Scripts]] for special event triggered scripts. | ||
= | == addEventHandler == | ||
{| class="wikitable sortable" | |||
! Class | |||
! Description | |||
! Arguments | |||
! Effects | |||
! Since | |||
== AnimChanged == | |- | ||
| <!-- Title --> | |||
==== AnimChanged ==== | |||
| <!-- Description --> | |||
Triggered every time a new animation is started. It can be assigned to a remote unit but will only fire on the PC where the actual [[addEventHandler]] command was executed. | |||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to | |||
* anim: [[String]] - Name of the anim that is started | |||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma2_1.00.gif]] | |||
[[Image:arguments_global.gif]] [[Image:effects_local.gif]] | |- | ||
| <!-- Title --> | |||
==== AnimDone ==== | |||
| <!-- Description --> | |||
Triggered every time an animation is finished. It can be assigned to a remote unit but will only fire on the PC where the actual [[addEventHandler]] command was executed. | |||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to | |||
* anim: [[String]] - Name of the anim that has been finished | |||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma2_1.00.gif]] | |||
Triggered every time | |- | ||
| <!-- Title --> | |||
==== AnimStateChanged ==== | |||
| <!-- Description --> | |||
Triggered every time an animation state changes. Unlike AnimChanged and AnimDone, it is triggered for all animation states in a sequence. It can be assigned to a remote unit but will only fire on the PC where the actual [[addEventHandler]] command was executed. | |||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to | |||
* anim: [[String]] - Name of the anim that has been started | |||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma2_1.00.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== ControlsShifted ==== | |||
| <!-- Description --> | |||
Triggers when controls of vehicle are shifted (pilot->co-pilot, co-pilot->pilot). Works for both, "Take" and "Release" controls actions. Event only triggers on PC where vehicle is [[local]] and EH was added. | |||
* | '''NOTE:''' If helicopter is [[local]] to the server and co-pilot takes controls, the helicopter changes locality to co-pilot PC. This means that if "ControlsShifted" EH was added on both server and client, "Take Controls" action will trigger EH on the server PC, but subsequent co-pilot "Release Controls" action will trigger it on co-pilot's PC. | ||
| <!-- Arguments --> | |||
* vehicle: [[Object]] - Vehicle which controls were shifted. | |||
* newController: [[Object]] - Unit who controls vehicle after this event. | |||
* oldController: [[Object]] - Unit who controled vehicle before this event. | |||
| <!-- Effects --> | |||
[[Image:arguments_local.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma3_1.00.gif]] | |||
== | |- | ||
| <!-- Title --> | |||
==== CuratorObjectSelectionChanged ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
[[Image: | |- | ||
| <!-- Title --> | |||
==== CuratorFeedbackMessage ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== CuratorGroupDeleted ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== CuratorGroupDoubleClicked ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== CuratorGroupEdited ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
== | |- | ||
| <!-- Title --> | |||
==== CuratorGroupPlaced ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
[[Image: | |- | ||
| <!-- Title --> | |||
==== CuratorGroupSelectionChanged ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== CuratorMarkerDeleted ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== CuratorMarkerDoubleClicked ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== CuratorMarkerEdited ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
== | |- | ||
| <!-- Title --> | |||
==== CuratorMarkerPlaced ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
[[Image: | |- | ||
| <!-- Title --> | |||
==== CuratorMarkerSelectionChanged ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== CuratorObjectDeleted ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== CuratorObjectDoubleClicked ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== CuratorObjectEdited ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== CuratorObjectPlaced ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
== | |- | ||
| <!-- Title --> | |||
==== CuratorObjectRegistered ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
[[Image: | |- | ||
| <!-- Title --> | |||
==== CuratorPinged ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== CuratorWaypointDeleted ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== CuratorWaypointDoubleClicked ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== CuratorWaypointEdited ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== CuratorWaypointPlaced ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
== | |- | ||
| <!-- Title --> | |||
==== CuratorWaypointSelectionChanged ==== | |||
| <!-- Description --> | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
[[Image:arma3_dev.gif]] | |||
Triggered when | |- | ||
| <!-- Title --> | |||
==== Dammaged ==== | |||
| <!-- Description --> | |||
Triggered when the unit is damaged. In ArmA works with all vehicles not only men like in OFP. It can be assigned to a remote vehicle but will only fire on the PC where the actual [[addEventHandler]] command was executed. | |||
(If simultaneous damage occured (e.g. via grenade) EH might be triggered several times.) | |||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to | |||
* selectionName: [[String]] - Name of the selection where the unit was damaged | |||
* damage: [[Number]] - Resulting level of damage | |||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:ofpr_1.85.gif]] | |||
|- | |||
| <!-- Title --> | |||
* vehicle: [[Object]] - Vehicle the event handler is assigned to | ==== Engine ==== | ||
| <!-- Description --> | |||
Triggered when the engine of the unit is turned on/off. | |||
| <!-- Arguments --> | |||
* vehicle: [[Object]] - Vehicle the event handler is assigned to | |||
* engineState: [[Boolean]] - True when the engine is turned on, false when turned off | * engineState: [[Boolean]] - True when the engine is turned on, false when turned off | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]] | |||
| <!-- Since --> | |||
[[Image:ofpr_1.85.gif]] | |||
== EpeContact == | |- | ||
| <!-- Title --> | |||
==== EpeContact ==== | |||
| <!-- Description --> | |||
Triggered when object collision (PhysX) is in progress. It can be assigned to a remote vehicle but will only fire on the PC where the actual [[addEventHandler]] command was executed. | Triggered when object collision (PhysX) is in progress. It can be assigned to a remote vehicle but will only fire on the PC where the actual [[addEventHandler]] command was executed. | ||
| <!-- Arguments --> | |||
* object1: [[Object]] - Object with attached handler. | |||
* object2: [[Object]] - Object which is colliding with object1. | |||
* object1: [[Object]] - Object with attached handler. | |||
* object2: [[Object]] - Object which is colliding with object1. | |||
* select1: [[String]] - Selection of object1 which is colliding - not in use at this moment, empty string is always returned. | * select1: [[String]] - Selection of object1 which is colliding - not in use at this moment, empty string is always returned. | ||
* select2: [[String]] - Selection of object2 which is colliding - not in use at this moment, empty string is always returned. | * select2: [[String]] - Selection of object2 which is colliding - not in use at this moment, empty string is always returned. | ||
* force: [[Number]] - Force of collision. | * force: [[Number]] - Force of collision. | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma3_1.00.gif]] | |||
== EpeContactEnd == | |- | ||
| <!-- Title --> | |||
==== EpeContactEnd ==== | |||
| <!-- Description --> | |||
Triggered when object collision (PhysX) ends. It can be assigned to a remote vehicle but will only fire on the PC where the actual [[addEventHandler]] command was executed. | Triggered when object collision (PhysX) ends. It can be assigned to a remote vehicle but will only fire on the PC where the actual [[addEventHandler]] command was executed. | ||
| <!-- Arguments --> | |||
* object1: [[Object]] - Object with attached handler. | |||
* object2: [[Object]] - Object which is colliding with object1. | |||
* object1: [[Object]] - Object with attached handler. | |||
* object2: [[Object]] - Object which is colliding with object1. | |||
* select1: [[String]] - Selection of object1 which is colliding - not in use at this moment, empty string is always returned. | * select1: [[String]] - Selection of object1 which is colliding - not in use at this moment, empty string is always returned. | ||
* select2: [[String]] - Selection of object2 which is colliding - not in use at this moment, empty string is always returned. | * select2: [[String]] - Selection of object2 which is colliding - not in use at this moment, empty string is always returned. | ||
* force: [[Number]] - Force of collision. | * force: [[Number]] - Force of collision. | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma3_1.00.gif]] | |||
== EpeContactStart == | |- | ||
| <!-- Title --> | |||
==== EpeContactStart ==== | |||
| <!-- Description --> | |||
Triggered when object collision (PhysX) starts. It can be assigned to a remote vehicle but will only fire on the PC where the actual [[addEventHandler]] command was executed. | Triggered when object collision (PhysX) starts. It can be assigned to a remote vehicle but will only fire on the PC where the actual [[addEventHandler]] command was executed. | ||
| <!-- Arguments --> | |||
* object1: [[Object]] - Object with attached handler. | |||
* object2: [[Object]] - Object which is colliding with object1. | |||
* object1: [[Object]] - Object with attached handler. | |||
* object2: [[Object]] - Object which is colliding with object1. | |||
* select1: [[String]] - Selection of object1 which is colliding - not in use at this moment, empty string is always returned. | * select1: [[String]] - Selection of object1 which is colliding - not in use at this moment, empty string is always returned. | ||
* select2: [[String]] - Selection of object2 which is colliding - not in use at this moment, empty string is always returned. | * select2: [[String]] - Selection of object2 which is colliding - not in use at this moment, empty string is always returned. | ||
* force: [[Number]] - Force of collision. | * force: [[Number]] - Force of collision. | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma3_1.00.gif]] | |||
== Explosion == | |- | ||
| <!-- Title --> | |||
==== Explosion ==== | |||
| <!-- Description --> | |||
Triggered when a vehicle or unit is damaged by a nearby explosion. It can be assigned to a remote vehicle but will only fire on the PC where the actual [[addEventHandler]] command was executed. | Triggered when a vehicle or unit is damaged by a nearby explosion. It can be assigned to a remote vehicle but will only fire on the PC where the actual [[addEventHandler]] command was executed. | ||
| <!-- Arguments --> | |||
* vehicle: [[Object]] - Object the event handler is assigned to | * vehicle: [[Object]] - Object the event handler is assigned to | ||
* damage: [[Number]] - Damage inflicted to the object | * damage: [[Number]] - Damage inflicted to the object | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma3_0.76.gif]] | |||
== Fired == | |- | ||
| <!-- Title --> | |||
==== Fired ==== | |||
| <!-- Description --> | |||
Triggered when the unit fires a weapon.<br> | Triggered when the unit fires a weapon.<br> | ||
This EH will not trigger if a unit fires out of a vehicle. For those cases an EH has to be attached to that particular vehicle. | This EH will not trigger if a unit fires out of a vehicle. For those cases an EH has to be attached to that particular vehicle. | ||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to <br /> | * unit: [[Object]] - Object the event handler is assigned to <br /> | ||
* weapon: [[String]] - Fired weapon <br /> | * weapon: [[String]] - Fired weapon <br /> | ||
Line 158: | Line 390: | ||
* ammo: [[String]] - Ammo used <br /> | * ammo: [[String]] - Ammo used <br /> | ||
* magazine: [[String]] - magazine name which was used<br /> | * magazine: [[String]] - magazine name which was used<br /> | ||
* projectile: [[Object]] - Object of the projectile that was shot | * projectile: [[Object]] - Object of the projectile that was shot (Arma 2: OA and onwards) | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:ofpr_1.85.gif]] | |||
== FiredNear == | |- | ||
| <!-- Title --> | |||
==== FiredNear ==== | |||
| <!-- Description --> | |||
Triggered when a weapon is fired somewhere ''near'' the unit or vehicle. | |||
It is also triggered if the unit itself is firing. | It is also triggered if the unit itself is firing. | ||
(Exception(s): the Throw weapon wont broadcast the FiredNear event) | |||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to | * unit: [[Object]] - Object the event handler is assigned to | ||
* firer: [[Object]] - Object which fires a weapon near the unit | * firer: [[Object]] - Object which fires a weapon near the unit | ||
Line 177: | Line 413: | ||
* mode: [[String]] - Current mode of the fired weapon | * mode: [[String]] - Current mode of the fired weapon | ||
* ammo: [[String]] - Ammo used | * ammo: [[String]] - Ammo used | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma2_1.00.gif]] | |||
== Fuel == | |- | ||
| <!-- Title --> | |||
==== Fuel ==== | |||
| <!-- Description --> | |||
Triggered when the unit's fuel status changes between completely empty / not empty (only useful if the event handler is assigned to a vehicle). | Triggered when the unit's fuel status changes between completely empty / not empty (only useful if the event handler is assigned to a vehicle). | ||
| <!-- Arguments --> | |||
* vehicle: [[Object]] - Vehicle the event handler is assigned to | |||
* vehicle: [[Object]] - Vehicle the event handler is assigned to | |||
* fuelState: [[Boolean]] - 0 when no fuel, 1 when the fuel tank is full | * fuelState: [[Boolean]] - 0 when no fuel, 1 when the fuel tank is full | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_global.gif]] | |||
| <!-- Since --> | |||
[[Image:ofpr_1.85.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== Gear ==== | |||
| <!-- Description --> | |||
Triggered when the unit lowers/retracts the landing gear (only useful if the event handler is assigned to is a member of the class "Plane"). | Triggered when the unit lowers/retracts the landing gear (only useful if the event handler is assigned to is a member of the class "Plane"). | ||
| <!-- Arguments --> | |||
* vehicle: [[Object]] - Vehicle the event handler is assigned to | |||
* vehicle: [[Object]] - Vehicle the event handler is assigned to | |||
* gearState: [[Boolean]] - True when the gear is lowered, false when retracted | * gearState: [[Boolean]] - True when the gear is lowered, false when retracted | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_global.gif]] | |||
| <!-- Since --> | |||
[[Image:arguments_global.gif]] [[Image: | [[Image:ofpr_1.85.gif]] | ||
|- | |||
| <!-- Title --> | |||
==== GetIn ==== | |||
| <!-- Description --> | |||
Triggers when a unit enters a vehicle. It can be assigned to a remote vehicle but will only fire on the PC where the actual [[addEventHandler]] command was executed. This EH is neither triggered upon a change of positions within the same vehicle nor by the moveInXXXX commands. However it is triggered by a "GetInXXXX" [[action]]. | Triggers when a unit enters a vehicle. It can be assigned to a remote vehicle but will only fire on the PC where the actual [[addEventHandler]] command was executed. This EH is neither triggered upon a change of positions within the same vehicle nor by the moveInXXXX commands. However it is triggered by a "GetInXXXX" [[action]]. | ||
In vehicles with multi-turret setup, entering any turret will show "gunner" for position. | |||
| <!-- Arguments --> | |||
* vehicle: [[Object]] - Vehicle the event handler is assigned to | * vehicle: [[Object]] - Vehicle the event handler is assigned to | ||
* position: [[String]] - Can be either "driver", "gunner", "commander" or "cargo" | * position: [[String]] - Can be either "driver", "gunner", "commander" or "cargo" | ||
* unit: [[Object]] - Unit that entered the vehicle | * unit: [[Object]] - Unit that entered the vehicle | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:ofpr_1.85.gif]] | |||
|- | |||
< | | <!-- Title --> | ||
==== GetOut ==== | |||
| <!-- Description --> | |||
== GetOut == | |||
Triggers when a unit gets out from a vehicle. It can be assigned to a remote vehicle but will only fire on the PC where the actual [[addEventHandler]] command was executed. This EH is triggered by both the [[moveOut]] command and by "GetOut" [[action]]. | Triggers when a unit gets out from a vehicle. It can be assigned to a remote vehicle but will only fire on the PC where the actual [[addEventHandler]] command was executed. This EH is triggered by both the [[moveOut]] command and by "GetOut" [[action]]. | ||
| <!-- Arguments --> | |||
* vehicle: [[Object]] - Vehicle the event handler is assigned to | * vehicle: [[Object]] - Vehicle the event handler is assigned to | ||
* position: [[String]] - Can be either "driver", "gunner", "commander" or "cargo" | * position: [[String]] - Can be either "driver", "gunner", "commander" or "cargo" | ||
* unit: [[Object]] - Unit that left the vehicle | * unit: [[Object]] - Unit that left the vehicle | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:ofpr_1.85.gif]] | |||
|- | |||
< | | <!-- Title --> | ||
==== HandleDamage ==== | |||
| <!-- Description --> | |||
== HandleDamage == | |||
Triggers when the unit is damaged and fires for each damaged selection separately. Works with all vehicles. This EH can accept a remote unit as argument however it will only fire when the unit is [[local]] to the PC this event handler was added on. For example, you can add this event handler to one particular vehicle on every PC. When this vehicle gets hit, only EH on PC where the vehicle is currently [[local]] will fire. | Triggers when the unit is damaged and fires for each damaged selection separately. Works with all vehicles. This EH can accept a remote unit as argument however it will only fire when the unit is [[local]] to the PC this event handler was added on. For example, you can add this event handler to one particular vehicle on every PC. When this vehicle gets hit, only EH on PC where the vehicle is currently [[local]] will fire. | ||
If code provided returns a numeric value, this value will overwrite the default damage of given selection after processing. Return value of 0 will make the unit invulnerable if damage is not scripted in other ways (i.e using [[setDamage]] and/or [[setHit]] for additional damage handling). If no value is returned, the default damage processing will be done. This allows for safe stacking of this event handler. Only the return value of the last added "HandleDamage" EH is considered. | If code provided returns a numeric value, this value will overwrite the default damage of given selection after processing. Return value of 0 will make the unit invulnerable if damage is not scripted in other ways (i.e using [[setDamage]] and/or [[setHit]] for additional damage handling). If no value is returned, the default damage processing will be done. This allows for safe stacking of this event handler. Only the return value of the last added "HandleDamage" EH is considered. | ||
'''Notes:''' | '''Notes:''' | ||
Line 277: | Line 489: | ||
* "HandleDamage" will continue to trigger even if the unit is already dead. | * "HandleDamage" will continue to trigger even if the unit is already dead. | ||
* "HandleDamage" is persistent. If you add it to the [[player]] object, it will continue to exist after player respawned. | * "HandleDamage" is persistent. If you add it to the [[player]] object, it will continue to exist after player respawned. | ||
* "HandleDamage" can trigger "twice" per damage event. Once for direct damage, once for indirect damage (explosive damage). This can happen even in the same frame, but is unlikely | * "HandleDamage" can trigger "twice" per damage event. Once for direct damage, once for indirect damage (explosive damage). This can happen even in the same frame, but is unlikely. | ||
Additional [http://forums.bistudio.com/showthread.php?t=113418&highlight=event+handler Celery's explanation]. | |||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to. | |||
* selectionName: [[String]] - Name of the selection where the unit was damaged. "" for over-all structural damage, "?" for unknown selections. | |||
* damage: [[Number]] - Resulting level of damage for the selection. | |||
[[Image: | * source: [[Object]] - The source unit that caused the damage. | ||
* projectile: [[String]] - Classname of the projectile that caused inflicted the damage. ("" for unknown, such as falling damage.) | |||
| <!-- Effects --> | |||
[[Image:arguments_local.gif]] [[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma2_1.00.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== HandleHeal ==== | |||
| <!-- Description --> | |||
Triggered when unit starts to heal (player using heal action or AI heals after being ordered). Triggers only on PC where EH is added and unit is [[local]]. If code returns false, engine side healing follows. Return true if you handle healing in script, use [[AISFinishHeal]] to tell engine that script side healing is done. See also [[lifeState]] and [[setUnconscious]] commands. | Triggered when unit starts to heal (player using heal action or AI heals after being ordered). Triggers only on PC where EH is added and unit is [[local]]. If code returns false, engine side healing follows. Return true if you handle healing in script, use [[AISFinishHeal]] to tell engine that script side healing is done. See also [[lifeState]] and [[setUnconscious]] commands. | ||
| <!-- Arguments --> | |||
* unit: [[Object]] | * unit: [[Object]] | ||
* healer: [[Object]] | * healer: [[Object]] | ||
* healercanheal: [[Boolean]] - true when healer is corpsman | * healercanheal: [[Boolean]] - true when healer is corpsman | ||
| <!-- Effects --> | |||
[[Image:arguments_local.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma2_1.00.gif]] | |||
== Hit == | |- | ||
| <!-- Title --> | |||
==== Hit ==== | |||
| <!-- Description --> | |||
Triggered when the unit is hit/damaged. | Triggered when the unit is hit/damaged. | ||
Is ''not'' always triggered when unit is killed by a hit.<br>Most of the time only the [[ArmA:_Event_Handlers#Killed|killed]] event handler is triggered when a unit dies from a hit.<br>The hit EH will not necessarily fire if only minor damage occurred (e.g. firing a bullet at a tank), even though the damage increased.<br>Does not fire when a unit is set to allowDamage false. | Is ''not'' always triggered when unit is killed by a hit.<br>Most of the time only the [[ArmA:_Event_Handlers#Killed|killed]] event handler is triggered when a unit dies from a hit.<br>The hit EH will not necessarily fire if only minor damage occurred (e.g. firing a bullet at a tank), even though the damage increased.<br>Does not fire when a unit is set to allowDamage false. | ||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to <br /> | * unit: [[Object]] - Object the event handler is assigned to <br /> | ||
* causedBy: [[Object]] - Object that caused the damage.<br />Contains the unit itself in case of collisions. <br /> | * causedBy: [[Object]] - Object that caused the damage.<br />Contains the unit itself in case of collisions. <br /> | ||
* damage: [[Number]] - Level of damage caused by the hit | * damage: [[Number]] - Level of damage caused by the hit | ||
| <!-- Effects --> | |||
[[Image:arguments_local.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:ofpr_1.85.gif]] | |||
== HitPart == | |- | ||
| <!-- Title --> | |||
==== HitPart ==== | |||
| <!-- Description --> | |||
Runs when the object, it was added to, gets injured/damaged. It returns the position and component that was hit on the object within a nested array, this is because the model may have more than selection name for the hit component. | Runs when the object, it was added to, gets injured/damaged. It returns the position and component that was hit on the object within a nested array, this is because the model may have more than selection name for the hit component. | ||
While you can add "HitPart" handler to a remote unit, the respectful [[addEventHandler]] command must be executed on the shooter's PC and will only fire on shooter's PC as well. Additionally, if the unit gets damaged by any means other than shooter's shooting, "HitPart" will not fire. Because of this, this event handler is most suitable for when the shooter needs feedback on his shooting, such as target practicing or hitmarker creation. | While you can add "HitPart" handler to a remote unit, the respectful [[addEventHandler]] command must be executed on the shooter's PC and will only fire on shooter's PC as well. Additionally, if the unit gets damaged by any means other than shooter's shooting, "HitPart" will not fire. Because of this, this event handler is most suitable for when the shooter needs feedback on his shooting, such as target practicing or hitmarker creation. | ||
| <!-- Arguments --> | |||
* target: [[Object]] - Object that got injured/damaged. | * target: [[Object]] - Object that got injured/damaged. | ||
* shooter: [[Object]] - Unit that inflicted the damage. If injured by a vehicle impact or a fall the target itself is returned, or, in case of explosions, the [[objNull|null object]]. In case of explosives that were planted by someone (e.g. satchel charges), that unit is returned. | * shooter: [[Object]] - Unit that inflicted the damage. If injured by a vehicle impact or a fall the target itself is returned, or, in case of explosions, the [[objNull|null object]]. In case of explosives that were planted by someone (e.g. satchel charges), that unit is returned. | ||
Line 343: | Line 553: | ||
* surface: [[String]] - Surface type struck. | * surface: [[String]] - Surface type struck. | ||
* direct: [[Boolean]] - [[true]] if object was directly hit, [[false]] if it was hit by indirect/splash damage. | * direct: [[Boolean]] - [[true]] if object was directly hit, [[false]] if it was hit by indirect/splash damage. | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma2oa_1.60.gif]] | |||
|- | |||
| <!-- Title --> | |||
== Init == | ==== Init ==== | ||
| <!-- Description --> | |||
Triggered on mission start or when a vehicle is created on the fly using [[createVehicle]]. | Triggered on mission start or when a vehicle is created on the fly using [[createVehicle]]. | ||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to | |||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:ofpr_1.85.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== IncomingMissile ==== | |||
| <!-- Description --> | |||
== IncomingMissile == | |||
Triggered when a guided missile locked on the target or unguided missile or rocket aimed by AI at the target was fired. | Triggered when a guided missile locked on the target or unguided missile or rocket aimed by AI at the target was fired. | ||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to | |||
* ammo: [[String]] - Ammo type that was fired on the unit | |||
* unit: [[Object]] - Object the event handler is assigned to | |||
* ammo: [[String]] - Ammo type that was fired on the unit | |||
* whoFired: [[Object]] - Object that fired the weapon | * whoFired: [[Object]] - Object that fired the weapon | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:ofpr_1.85.gif]] | |||
== Killed == | |- | ||
| <!-- Title --> | |||
==== Killed ==== | |||
| <!-- Description --> | |||
Triggered when the unit is killed. | Triggered when the unit is killed. | ||
Be careful when the killer has been a vehicle. For most cases the reference of the vehicle is the same as the [[effectiveCommander]], but not always. | |||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to <br /> | * unit: [[Object]] - Object the event handler is assigned to <br /> | ||
* killer: [[Object]] - Object that killed the unit<br />Contains the unit itself in case of collisions. <br /> | * killer: [[Object]] - Object that killed the unit<br />Contains the unit itself in case of collisions. <br /> | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:ofpr_1.85.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== LandedTouchDown ==== | |||
| <!-- Description --> | |||
== | |||
Triggered when a plane (AI or player) touches the ground. | Triggered when a plane (AI or player) touches the ground. | ||
| <!-- Arguments --> | |||
* plane: [[Object]] - Object the event handler is assigned to | |||
* airportID: [[Number]] - ID of the airport (-1 for anything else) | |||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma2oa_1.60.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== LandedStopped ==== | |||
| <!-- Description --> | |||
== LandedStopped == | |||
Triggered when an AI pilot would get out usually. Not executed for player. | Triggered when an AI pilot would get out usually. Not executed for player. | ||
| <!-- Arguments --> | |||
* plane: [[Object]] - Object the event handler is assigned to | |||
* airportID: [[Number]] - ID of the airport (-1 for anything else) | |||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma2oa_1.60.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== Local ==== | |||
| <!-- Description --> | |||
== Local == | |||
Triggered when locality of object in MP is changed. | Triggered when locality of object in MP is changed. | ||
| <!-- Arguments --> | |||
* localUnit: [[Object]] - Unit for who is object local. | |||
* local: [[Boolean]] - If the object is local on given computer. | |||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma3_1.00.gif]] | [[Image:arma3_1.00.gif]] | ||
|- | |||
| <!-- Title --> | |||
==== MPHit ==== | |||
| <!-- Description --> | |||
== MPHit == | |||
Triggered when the unit is hit/damaged. EH can be added on any machine and EH code will trigger globally on every connected client and server. Add it only on server because if you have 10 machines on network and add this EH to every machine, when triggered the EH code will be executed 10 x 10 = 100 times. | Triggered when the unit is hit/damaged. EH can be added on any machine and EH code will trigger globally on every connected client and server. Add it only on server because if you have 10 machines on network and add this EH to every machine, when triggered the EH code will be executed 10 x 10 = 100 times. | ||
Line 434: | Line 648: | ||
This EH must be used in conjunction with the [[addMPEventHandler]] command. | This EH must be used in conjunction with the [[addMPEventHandler]] command. | ||
Note: Call a function from the MPHit EH code space, rather to define the full code in there directly. The reason is the code space will be transferred over network on each event activation - so keep the data as small as possible! | |||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to <br /> | * unit: [[Object]] - Object the event handler is assigned to <br /> | ||
* causedBy: [[Object]] - Object that caused the damage. Contains the unit itself in case of collisions. <br /> | * causedBy: [[Object]] - Object that caused the damage. Contains the unit itself in case of collisions. <br /> | ||
* damage: [[Number]] - Level of damage caused by the hit | * damage: [[Number]] - Level of damage caused by the hit | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]] [[Image:effects_global.gif]] | |||
| <!-- Since --> | |||
[[Image:arma2oa_1.55.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== MPRespawn ==== | |||
| <!-- Description --> | |||
< | Triggered when a unit respawns. | ||
== | |||
'''Notes:''' | '''Notes:''' | ||
* This event never triggers on server: [http://feedback.arma3.com/view.php?id=14517] | |||
* As of OA 1.62, this command does not work as one would expect. It is only triggered on the machine where the unit it was assigned to is local. The only difference between '''Respawn''' and '''MPRespawn''' is that '''MPRespawn''' can be assigned from anywhere while '''Respawn''' requires the unit to be local. | |||
* This command must be used in conjunction with the command [[addMPEventHandler]] rather than the old command used for non MP commands. | * This command must be used in conjunction with the command [[addMPEventHandler]] rather than the old command used for non MP commands. | ||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to | * unit: [[Object]] - Object the event handler is assigned to | ||
* corpse: [[Object]] - Object the event handler was assigned to, aka the corpse/unit player was previously controlling. | * corpse: [[Object]] - Object the event handler was assigned to, aka the corpse/unit player was previously controlling. | ||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]] [[Image:effects_global.gif]] | |||
| <!-- Since --> | |||
[[Image:arma2oa_1.55.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== Respawn ==== | |||
| <!-- Description --> | |||
== | |||
Triggered when a unit respawns. | Triggered when a unit respawns. | ||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to | |||
* corpse: [[Object]] - Object the event handler was assigned to, aka the corpse/unit player was previously controlling | |||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma2_1.00.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== Put ==== | |||
| <!-- Description --> | |||
== | |||
= | |||
Triggers when a unit puts an item in a container. | Triggers when a unit puts an item in a container. | ||
| <!-- Arguments --> | |||
* unit: [[Object]] - Unit to which the event handler is assigned | |||
* container: [[Object]] - The container into which the item was placed (vehicle, box, etc.) | |||
* item: [[String]] - The class name of the moved item | |||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma3_0.56.gif]] | [[Image:arma3_0.56.gif]] | ||
|- | |||
| <!-- Title --> | |||
==== Take ==== | |||
| <!-- Description --> | |||
== Take == | |||
Triggers when a unit takes an item from a container. | Triggers when a unit takes an item from a container. | ||
| <!-- Arguments --> | |||
* unit: [[Object]] - Unit to which the event handler is assigned | |||
* container: [[Object]] - The container from which the item was taken (vehicle, box, etc.) | |||
* item: [[String]] - The class name of the taken item | |||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma3_0.56.gif]] | [[Image:arma3_0.56.gif]] | ||
|- | |||
| <!-- Title --> | |||
==== SoundPlayed ==== | |||
| <!-- Description --> | |||
Triggered when player is making noises when injured or fatigued. | |||
| <!-- Arguments --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
* unit: | |- | ||
* | | <!-- Title --> | ||
==== WeaponAssembled ==== | |||
| <!-- Description --> | |||
Triggers when weapon gets assembled. | |||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to | |||
* weapon: [[Object]] - Object of the assembled weapon | |||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma2oa_1.55.gif]] | |||
== | |- | ||
| <!-- Title --> | |||
==== WeaponDisassembled ==== | |||
| <!-- Description --> | |||
Triggers when weapon gets disassembled. | |||
| <!-- Arguments --> | |||
* unit: [[Object]] - Object the event handler is assigned to | |||
* primaryBag: [[Object]] - First backpack object which was weapon disassembled into | |||
* secondarybag: [[Object]] - Second backpack object which was weapon disassembled into | |||
| <!-- Effects --> | |||
[[Image:arguments_global.gif]][[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma2oa_1.55.gif]] | |||
|} | |||
=== addMissionEventHandler === | |||
{| class="wikitable sortable" | |||
! Class | |||
! Description | |||
! Arguments | |||
! Effects | |||
! Since | |||
|- | |||
| <!-- Title --> | |||
==== Ended ==== | |||
| <!-- Description --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
|- | |||
| <!-- Title --> | |||
==== Loaded ==== | |||
| <!-- Description --> | |||
| <!-- Effects --> | |||
| <!-- Since --> | |||
|} | |||
=== addMusicEventHandler === | |||
{| class="wikitable sortable" | |||
! Class | |||
! Description | |||
! Arguments | |||
! Effects | |||
! Since | |||
[[ | |- | ||
| <!-- Title --> | |||
==== MusicStart ==== | |||
| <!-- Description --> | |||
Triggers when [[Description.ext#Music|CfgMusic]] sound starts playing, after being executed with [[playMusic]] command. | |||
This event handler needs to be added with [[addMusicEventHandler]] command and removed with [[removeMusicEventHandler]]. | |||
| <!-- Arguments --> | |||
* className: [[String]] - [[Description.ext#Music|CfgMusic]] class name of currently playing sound. | |||
* handlerID: [[Number]] - EH id returned by [[addMusicEventHandler]]. | |||
| <!-- Effects --> | |||
[[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma3_0.50.gif]] | |||
|- | |||
| <!-- Title --> | |||
==== MusicStop ==== | |||
| <!-- Description --> | |||
Triggers when [[Description.ext#Music|CfgMusic]] sound finished playing, after being executed with [[playMusic]] command. Note that EH will not be triggered if you force stop the music with [[playMusic]] "". | |||
This event handler needs to be added with [[addMusicEventHandler]] command and removed with [[removeMusicEventHandler]]. | |||
| <!-- Arguments --> | |||
* className: [[String]] - [[Description.ext#Music|CfgMusic]] class name of currently played sound. | |||
* handlerID: [[Number]] - EH id returned by [[addMusicEventHandler]]. | |||
| <!-- Effects --> | |||
[[Image:effects_local.gif]] | |||
| <!-- Since --> | |||
[[Image:arma3_0.50.gif]] | |||
|} | |||
[[Category: Event Handlers]] | [[Category: Event Handlers]] |
Revision as of 12:03, 17 February 2014
Introduction
An event handler (abbreviated to EH) allows you to automatically monitor and then execute custom code upon particular events being triggered.
These event handlers relate to commands such as: addEventHandler, removeEventHandler, removeAllEventHandlers.
General MP Note
As opposed to OFP event handlers, a respawned unit retains the EHs it had before, so it is no longer required to re-add EHs after respawning.
The MP event handlers "MPHit", "MPKilled" and "MPRespawn" have to be assigned to the object by using addMPEventHandler.
Event Scripts
See also: Event Scripts for special event triggered scripts.
addEventHandler
Class | Description | Arguments | Effects | Since |
---|---|---|---|---|
AnimChanged |
Triggered every time a new animation is started. It can be assigned to a remote unit but will only fire on the PC where the actual addEventHandler command was executed. |
|||
AnimDone |
Triggered every time an animation is finished. It can be assigned to a remote unit but will only fire on the PC where the actual addEventHandler command was executed. |
|||
AnimStateChanged |
Triggered every time an animation state changes. Unlike AnimChanged and AnimDone, it is triggered for all animation states in a sequence. It can be assigned to a remote unit but will only fire on the PC where the actual addEventHandler command was executed. |
|||
ControlsShifted |
Triggers when controls of vehicle are shifted (pilot->co-pilot, co-pilot->pilot). Works for both, "Take" and "Release" controls actions. Event only triggers on PC where vehicle is local and EH was added. NOTE: If helicopter is local to the server and co-pilot takes controls, the helicopter changes locality to co-pilot PC. This means that if "ControlsShifted" EH was added on both server and client, "Take Controls" action will trigger EH on the server PC, but subsequent co-pilot "Release Controls" action will trigger it on co-pilot's PC. |
|||
CuratorObjectSelectionChanged |
||||
CuratorFeedbackMessage |
||||
CuratorGroupDeleted |
||||
CuratorGroupDoubleClicked |
||||
CuratorGroupEdited |
||||
CuratorGroupPlaced |
||||
CuratorGroupSelectionChanged |
||||
CuratorMarkerDeleted |
||||
CuratorMarkerDoubleClicked |
||||
CuratorMarkerEdited |
||||
CuratorMarkerPlaced |
||||
CuratorMarkerSelectionChanged |
||||
CuratorObjectDeleted |
||||
CuratorObjectDoubleClicked |
||||
CuratorObjectEdited |
||||
CuratorObjectPlaced |
||||
CuratorObjectRegistered |
||||
CuratorPinged |
||||
CuratorWaypointDeleted |
||||
CuratorWaypointDoubleClicked |
||||
CuratorWaypointEdited |
||||
CuratorWaypointPlaced |
||||
CuratorWaypointSelectionChanged |
||||
Dammaged |
Triggered when the unit is damaged. In ArmA works with all vehicles not only men like in OFP. It can be assigned to a remote vehicle but will only fire on the PC where the actual addEventHandler command was executed. (If simultaneous damage occured (e.g. via grenade) EH might be triggered several times.) |
|||
Engine |
Triggered when the engine of the unit is turned on/off. |
|||
EpeContact |
Triggered when object collision (PhysX) is in progress. It can be assigned to a remote vehicle but will only fire on the PC where the actual addEventHandler command was executed. |
|
||
EpeContactEnd |
Triggered when object collision (PhysX) ends. It can be assigned to a remote vehicle but will only fire on the PC where the actual addEventHandler command was executed. |
|
||
EpeContactStart |
Triggered when object collision (PhysX) starts. It can be assigned to a remote vehicle but will only fire on the PC where the actual addEventHandler command was executed. |
|
||
Explosion |
Triggered when a vehicle or unit is damaged by a nearby explosion. It can be assigned to a remote vehicle but will only fire on the PC where the actual addEventHandler command was executed. |
|||
Fired |
Triggered when the unit fires a weapon. |
|
||
FiredNear |
Triggered when a weapon is fired somewhere near the unit or vehicle. It is also triggered if the unit itself is firing. (Exception(s): the Throw weapon wont broadcast the FiredNear event) |
|
||
Fuel |
Triggered when the unit's fuel status changes between completely empty / not empty (only useful if the event handler is assigned to a vehicle). |
|||
Gear |
Triggered when the unit lowers/retracts the landing gear (only useful if the event handler is assigned to is a member of the class "Plane"). |
|||
GetIn |
Triggers when a unit enters a vehicle. It can be assigned to a remote vehicle but will only fire on the PC where the actual addEventHandler command was executed. This EH is neither triggered upon a change of positions within the same vehicle nor by the moveInXXXX commands. However it is triggered by a "GetInXXXX" action. In vehicles with multi-turret setup, entering any turret will show "gunner" for position. |
|||
GetOut |
Triggers when a unit gets out from a vehicle. It can be assigned to a remote vehicle but will only fire on the PC where the actual addEventHandler command was executed. This EH is triggered by both the moveOut command and by "GetOut" action. |
|||
HandleDamage |
Triggers when the unit is damaged and fires for each damaged selection separately. Works with all vehicles. This EH can accept a remote unit as argument however it will only fire when the unit is local to the PC this event handler was added on. For example, you can add this event handler to one particular vehicle on every PC. When this vehicle gets hit, only EH on PC where the vehicle is currently local will fire. If code provided returns a numeric value, this value will overwrite the default damage of given selection after processing. Return value of 0 will make the unit invulnerable if damage is not scripted in other ways (i.e using setDamage and/or setHit for additional damage handling). If no value is returned, the default damage processing will be done. This allows for safe stacking of this event handler. Only the return value of the last added "HandleDamage" EH is considered. Notes:
Additional Celery's explanation. |
|
||
HandleHeal |
Triggered when unit starts to heal (player using heal action or AI heals after being ordered). Triggers only on PC where EH is added and unit is local. If code returns false, engine side healing follows. Return true if you handle healing in script, use AISFinishHeal to tell engine that script side healing is done. See also lifeState and setUnconscious commands. |
|||
Hit |
Triggered when the unit is hit/damaged. Is not always triggered when unit is killed by a hit. |
|||
HitPart |
Runs when the object, it was added to, gets injured/damaged. It returns the position and component that was hit on the object within a nested array, this is because the model may have more than selection name for the hit component. While you can add "HitPart" handler to a remote unit, the respectful addEventHandler command must be executed on the shooter's PC and will only fire on shooter's PC as well. Additionally, if the unit gets damaged by any means other than shooter's shooting, "HitPart" will not fire. Because of this, this event handler is most suitable for when the shooter needs feedback on his shooting, such as target practicing or hitmarker creation. |
|
||
Init |
Triggered on mission start or when a vehicle is created on the fly using createVehicle. |
|
||
IncomingMissile |
Triggered when a guided missile locked on the target or unguided missile or rocket aimed by AI at the target was fired. |
|||
Killed |
Triggered when the unit is killed. Be careful when the killer has been a vehicle. For most cases the reference of the vehicle is the same as the effectiveCommander, but not always. |
|||
LandedTouchDown |
Triggered when a plane (AI or player) touches the ground. |
|||
LandedStopped |
Triggered when an AI pilot would get out usually. Not executed for player. |
|||
Local |
Triggered when locality of object in MP is changed. |
|||
MPHit |
Triggered when the unit is hit/damaged. EH can be added on any machine and EH code will trigger globally on every connected client and server. Add it only on server because if you have 10 machines on network and add this EH to every machine, when triggered the EH code will be executed 10 x 10 = 100 times. Is not always triggered when unit is killed by a hit. Most of the time only the Killed event handler is triggered when a unit dies from a hit. The hit EH will not necessarily fire if only minor damage occurred (e.g. firing a bullet at a tank), even though the damage increased. Can also trigger several times for an explosion (direct and indirect damage). Does not fire when a unit is set to allowDamage false. However it will fire with "HandleDamage" EH added alongside stopping unit from taking damage addEventHandler ["HandleDamage",{0}]; Will not trigger when unit is dead. This EH must be used in conjunction with the addMPEventHandler command. Note: Call a function from the MPHit EH code space, rather to define the full code in there directly. The reason is the code space will be transferred over network on each event activation - so keep the data as small as possible! |
|||
MPRespawn |
Triggered when a unit respawns. Notes:
|
|||
Respawn |
Triggered when a unit respawns. |
|||
Put |
Triggers when a unit puts an item in a container. |
|||
Take |
Triggers when a unit takes an item from a container. |
|||
SoundPlayed |
Triggered when player is making noises when injured or fatigued. |
|||
WeaponAssembled |
Triggers when weapon gets assembled. |
|||
WeaponDisassembled |
Triggers when weapon gets disassembled. |
addMissionEventHandler
Class | Description | Arguments | Effects | Since |
---|---|---|---|---|
Ended |
||||
Loaded |
addMusicEventHandler
Class | Description | Arguments | Effects | Since |
---|---|---|---|---|
MusicStart |
Triggers when CfgMusic sound starts playing, after being executed with playMusic command. This event handler needs to be added with addMusicEventHandler command and removed with removeMusicEventHandler. |
|
||
MusicStop |
Triggers when CfgMusic sound finished playing, after being executed with playMusic command. Note that EH will not be triggered if you force stop the music with playMusic "". This event handler needs to be added with addMusicEventHandler command and removed with removeMusicEventHandler. |
|