OnClientPedHeliKilled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Remove obsolete Requirements section)
 
Line 31: Line 31:
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
==Requirements==
{{Requirements|n/a|1.3.0-9.03893|}}


==See Also==
==See Also==

Latest revision as of 17:04, 7 November 2024

This event is fired when a ped is killed due to the effect of a helicopter blades.

[[{{{image}}}|link=|]] Note: This event is only triggered for peds that are streamed in

Parameters

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

Source

The source of this event is the ped who was killed

Type

This event is a pre reaction event meaning it occurs before any game level reaction to the collision which include:

  • Peds flying off
  • Peds taking damage
  • Blood

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 ped events


Client event functions