OnClientPlayerHeliKilled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client event}} This event is fired when a player is killed due to the effect of a helicopter blades ==Parameters== <syntaxhighlight lang="lua"> vehicle killer </syntaxhighlight> *'''killer:'''...")
 
No edit summary
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client event}}
{{Client event}}
This event is fired when a player is killed due to the effect of a helicopter blades
This event is fired when a player is killed due to the effect of a helicopter blades.
{{Note|This event is only triggered for players that are streamed in}}
==Parameters==
==Parameters==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Line 10: Line 11:
==Source==
==Source==
The source of this event is the player who was killed
The source of this event is the player who was killed
==Type==
This event is a pre reaction event meaning it occurs before any game level reaction to the collision which include:
* Players flying off
* Players taking damage
* Blood


==Cancel effect==
==Cancel effect==
Line 24: Line 31:
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
==Requirements==
{{Requirements|n/a|1.3.0-9.03893|}}


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

Latest revision as of 03:27, 20 January 2015

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

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

Parameters

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

Source

The source of this event is the player who was killed

Type

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

  • Players flying off
  • Players taking damage
  • Blood

Cancel effect

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

Example

Click to collapse [-]
Client

This example disables helicopter killing

function cancelDeath()
	cancelEvent()
end
addEventHandler("onClientPlayerHeliKilled", getLocalPlayer(), 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