OnClientPlayerStealthKill

From Multi Theft Auto: Wiki
Revision as of 17:08, 5 February 2018 by LordHenry (talk | contribs) (→‎Example)
Jump to navigation Jump to search

This event is triggered when the local 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. (Local player only)

Cancel effect

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

Example

This example disables stealth kills.

function abortAllStealthKills(targetPlayer)
    cancelEvent()
end
addEventHandler("onClientPlayerStealthKill", getLocalPlayer(), abortAllStealthKills)

This example disables stealth kills on a specific Ped.

local myNPC = createPed (187, 1481.265, -1752.25, 15.446, 0)

function antiKnife (target)
    if target == myNPC then
        cancelEvent()
    end
end
addEventHandler("onClientPlayerStealthKill", getLocalPlayer(), antiKnife)

See Also

Client player events


Client event functions