OnClientPedHeliKilled

From Multi Theft Auto: Wiki
Revision as of 06:16, 10 May 2012 by Ccw (talk | contribs)
Jump to navigation Jump to search

This event is fired when a ped is killed due to the effect of a helicopter blades. Also note that this event is only triggered for peds nearby the local player's camera. This is due to elements far away being streamed out.

Parameters

vehicle killer
  • killer: the vehicle (heli) responsible for causing the death.

Source

The source of this event is the ped who was killed

Cancel effect

If this event is canceled, the ped will not be killed

Example

Click to collapse [-]
Client

This example disables helicopter killing

function cancelDeath()
	cancelEvent()
end
addEventHandler("onClientPedHeliKilled", root, cancelDeath)

Requirements

Minimum server version n/a
Minimum client version 1.3.0-9.03893

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.3.0-9.03893" />

See Also

Client player events


Client event functions