OnClientPedHeliKilled

From Multi Theft Auto: Wiki
Revision as of 08:23, 3 May 2012 by Qaisjp (talk | contribs) (Created page with "__NOTOC__ {{Client event}} 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 loca...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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)

See Also

Client player events


Client event functions