Event Handlers – Arma 2

From Bohemia Interactive Community
Jump to navigation Jump to search
(removed Arma 1 event handlers. Now only new Arma 2 ehs, or A1 ehs that behave differently in A2, are listed here)
Line 1: Line 1:
=Introduction=
=Introduction=
An event handler (abbreviated to EH) allows you to automatically monitor and then execute custom code upon particular events being triggered.
In addition to all the [[ArmA: Event Handlers|ArmA 1 event handlers]], the following event handlers can be added in Arma 2.
 
These event handlers relate to commands such as: [[addEventHandler]], [[removeEventHandler]], [[removeAllEventHandlers]].
 
== General MP Note ==
 
As opposed to OFP event handlers, in ArmA 2 a respawned unit retains the EHs it had before, so it is no longer required to re-add EHs after respawning.
 
== Event Scripts ==
See also: [[Event Scripts]] for special event triggered scripts.


=Event Handler List=
=Event Handler List=
== AnimChanged ==
Trigerred everytime a new animation is started.
Global.
Passed array: '''[unit, anim]'''
* unit: [[Object]] - Object the event handler is assigned to  <br />
* anim: [[String]] - Name of the anim that started<br />
== AnimDone ==
Trigerred everytime an animation is finished.
Unknown MP behaviour. Probably local.
Passed array: '''[unit, anim]'''
* unit: [[Object]] - Object the event handler is assigned to  <br />
* anim: [[String]] - Name of the anim that has been finished<br />


==AnimStateChanged==
==AnimStateChanged==
[[Image:Arma2_1.00.gif]] Available in Arma 2 only.<br />
[[Image:Arma2_1.00.gif]] <br />
(placeholder)
(placeholder)
== Dammaged ==
Triggered when the unit is damaged. In ArmA works with all vehicles not only men like in OFP.
Global.
(If simultaneous damage occured (e.g. via grenade) EH might be triggered several times.)
Passed array: '''[unit, selectionName, damage]'''
* unit: [[Object]] - Object the event handler is assigned to  <br />
* selectionName: [[String]] - Name of the selection where the unit was damaged<br />
* damage: [[Number]] - Resulting level of damage
== Engine ==
Triggered when the engine of the unit is turned on/off.
Global.
Passed array: '''[vehicle, engineState]'''
* vehicle: [[Object]] - Vehicle the event handler is assigned to <br />
* engineState: [[Boolean]] - True when the engine is turned on, false when turned off
==Fired==
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.
Global.
Passed array: '''[unit, weapon, muzzle, mode, ammo]'''
* unit: [[Object]] - Object the event handler is assigned to <br />
* weapon: [[String]] - Fired weapon <br />
* muzzle: [[String]] - Muzzle that was used <br />
* mode: [[String]] - Current mode of the fired weapon<br />
* ammo: [[String]] - Ammo used


==FiredNear==
==FiredNear==
[[Image:Arma2_1.00.gif]] Available in Arma 2 only.<br />
[[Image:Arma2_1.00.gif]] <br />
Triggered when a weapon is fired somewhere ''near'' the unit or vehicle.<br />
Triggered when a weapon is fired somewhere ''near'' the unit or vehicle.<br />
It is also triggered if the unit itself is firing.
It is also triggered if the unit itself is firing.
Line 91: Line 25:
* ammo: [[String]] - Ammo used
* ammo: [[String]] - Ammo used


==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).
Global.
Passed array: '''[vehicle, fuelState]'''
* vehicle: [[Object]] - Vehicle the event handler is assigned to <br />
* fuelState: [[Boolean]] - 0 when no fuel, 1 when the fuel tank is full
 
==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").
Global.
Passed array: '''[vehicle, gearState]'''
* vehicle: [[Object]] - Vehicle the event handler is assigned to <br />
* gearState: [[Boolean]] - True when the gear is lowered, false when retracted
 
==GetIn==
Triggered when a unit enters the object (only useful when the event handler is assigned to a vehicle). It does not trigger upon a change of positions within the same vehicle. It also is not triggered by the moveInX commands.
Global.
Passed array: '''[vehicle, position, unit]'''
* vehicle: [[Object]] - Vehicle the event handler is assigned to
* position: [[String]] - Can be either "driver", "gunner", "commander" or "cargo"
* unit: [[Object]] - Unit that entered the vehicle
==GetOut==
Triggered when a unit gets out from the object, works the same way as GetIn.
Global.
 
==HandleDamage==
==HandleDamage==
[[Image:Arma2_1.00.gif]] Available in Arma 2 only.<br />
[[Image:Arma2_1.00.gif]] <br />


Triggered when the unit is damaged. Works with all vehicles. Code provided must return a value what should be the damage of given part after processing. Adding this eventhandler with no return value or with return value 0  replaces damage handling by the engine, making the object invulnerable if damage is not scripted in the eventhandler. If you want default processing to be done, be sure to return ''_this select 2''. See [[setDamage]] and [[setHit]] for more information regarding damage handling.
Triggered when the unit is damaged. Works with all vehicles. Code provided must return a value what should be the damage of given part after processing. Adding this eventhandler with no return value or with return value 0  replaces damage handling by the engine, making the object invulnerable if damage is not scripted in the eventhandler. If you want default processing to be done, be sure to return ''_this select 2''. See [[setDamage]] and [[setHit]] for more information regarding damage handling.
Line 163: Line 59:


==HandleHeal==
==HandleHeal==
[[Image:Arma2_1.00.gif]] Available in Arma 2 only.<br />
[[Image:Arma2_1.00.gif]] <br />


Passed array: '''[unit, healer, healercanheal]'''
Passed array: '''[unit, healer, healercanheal]'''
Line 171: Line 67:
* healercanheal: [[Boolean]] - true when healer is corpsman
* healercanheal: [[Boolean]] - true when healer is corpsman


==Hit==
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.
Local.
Passed array: '''[unit, causedBy, damage]'''
* 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 />
* damage: [[Number]] - Level of damage caused by the hit
==Init==
Triggered on mission start or when a vehicle is created on the fly using [[createVehicle]].
Global.
Passed array: '''[unit]'''
* unit: [[Object]] - Object the event handler is assigned to
 
==IncomingMissile==
Triggered when a guided missile locked on the target or unguided missile or rocket aimed by AI at the target was fired.
Global.
Passed array: '''[unit, ammo, whoFired]'''
* unit: [[Object]] - Object the event handler is assigned to <br />
* ammo: [[String]] - Ammo type that was fired on the unit <br />
* whoFired: [[Object]] - Object that fired the weapon
==Killed==
Triggered when the unit is killed.
Local.
Passed array: '''[unit, killer]'''
* 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 />
==LandedTouchDown==
Triggered when a plane (AI or player) touches the ground.
Local.
Passed array: '''[plane, airportID]'''
* plane: [[Object]] - Object the event handler is assigned to <br />
* airportID: [[Number]] - ID of the airport (-1 for anything else). <br />
==LandedStopped==
Triggered when an AI pilot would get out usually. Not executed for player.
Local.
Passed array: '''[plane, airportID]'''
* plane: [[Object]] - Object the event handler is assigned to <br />
* airportID: [[Number]] - ID of the airport (-1 for anything else). <br />


[[Category: Event Handlers]]
[[Category: Event Handlers]]

Revision as of 05:09, 24 December 2009

Introduction

In addition to all the ArmA 1 event handlers, the following event handlers can be added in Arma 2.

Event Handler List

AnimStateChanged

Arma2 1.00.gif
(placeholder)

FiredNear

Arma2 1.00.gif
Triggered when a weapon is fired somewhere near the unit or vehicle.
It is also triggered if the unit itself is firing.

Global. (Exception(s): the Throw weapon wont broadcast the FiredNear event)

Passed array: [unit, firer, distance, weapon, muzzle, mode, ammo]

  • unit: Object - Object the event handler is assigned to
  • firer: Object - Object which fires a weapon near the unit
  • distance: Number - Distance in meters between the unit and firer (max. distance ~69m)
  • weapon: String - Fired weapon
  • muzzle: String - Muzzle that was used
  • mode: String - Current mode of the fired weapon
  • ammo: String - Ammo used

HandleDamage

Arma2 1.00.gif

Triggered when the unit is damaged. Works with all vehicles. Code provided must return a value what should be the damage of given part after processing. Adding this eventhandler with no return value or with return value 0 replaces damage handling by the engine, making the object invulnerable if damage is not scripted in the eventhandler. If you want default processing to be done, be sure to return _this select 2. See setDamage and setHit for more information regarding damage handling.

Unknown locality

This EH is triggered separately for every selection of the damaged object.

Passed array: [unit, selectionName, damage, source, projectile]

  • 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.
  • 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.)


Example:

HANDLE = TargetSoldier addeventhandler ["HandleDamage",{diag_log text format ["T=%1 : %2", time, _this];_this select 2;} ];

When shooting the soldier once in the head, and once in the torso, ArmA2.RPT shows:

T=6.754 : [TargetSoldier,"",0.350463,B 1-1-A:1 (Matthijs),"B_556x45_Ball"]
T=6.754 : [TargetSoldier,"head_hit",3.23586,B 1-1-A:1 (Matthijs),"B_556x45_Ball"]
T=6.754 : [TargetSoldier,"body",0.0743558,B 1-1-A:1 (Matthijs),"B_556x45_Ball"]
T=6.754 : [TargetSoldier,"hands",0.667459,B 1-1-A:1 (Matthijs),"B_556x45_Ball"]
T=6.754 : [TargetSoldier,"legs",0.00307311,B 1-1-A:1 (Matthijs),"B_556x45_Ball"]
T=10.078 : [TargetSoldier,"",0.350179,B 1-1-A:1 (Matthijs),"B_556x45_Ball"]
T=10.078 : [TargetSoldier,"head_hit",0.230999,B 1-1-A:1 (Matthijs),"B_556x45_Ball"]
T=10.078 : [TargetSoldier,"body",1.52881,B 1-1-A:1 (Matthijs),"B_556x45_Ball"]
T=10.078 : [TargetSoldier,"hands",0.105206,B 1-1-A:1 (Matthijs),"B_556x45_Ball"]
T=10.078 : [TargetSoldier,"legs",0.0211435,B 1-1-A:1 (Matthijs),"B_556x45_Ball"]

HandleHeal

Arma2 1.00.gif

Passed array: [unit, healer, healercanheal]