OnPlayerStealthKill: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 27: Line 27:
end
end
addEventHandler("onPlayerStealthKill", getRootElement(), onStealthKill)
addEventHandler("onPlayerStealthKill", getRootElement(), onStealthKill)
[/lua]
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>

Revision as of 14:36, 3 June 2010

This event is triggered when a player stealth kills another player.

Parameters

element targetPlayer
  • targetPlayer: The player or ped that is being stealth killed.

Source

The source of this event is the player that initiated the stealth kill.

Cancel effect

If this event is canceled, then the stealth kill is aborted.

Example

Click to collapse [-]
Server
[lua]
function onStealthKill(targetPlayer)
     outputChatBox("Stealth kill!", source)
     outputChatBox("" .. getPlayerName(targetPlayer) .. " has been stealth-killed by " .. getPlayerName(source) .. ".", source)
end
addEventHandler("onPlayerStealthKill", getRootElement(), onStealthKill)


See Also

Player events


Event functions