OnClientPedWasted: Difference between revisions
Jump to navigation
Jump to search
m (Fixing up poorly made example) |
|||
Line 19: | Line 19: | ||
==Example== | ==Example== | ||
<section name="Client" class="client" show="true"> | <section name="Client" class="client" show="true"> | ||
This example outputs | This example outputs a message every time a player kills another player. | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
-- define the event handler function | -- define the event handler function | ||
function onWasted(killer, weapon, bodypart) | function onWasted(killer, weapon, bodypart) | ||
if killer | if ( killer and getElementType(killer) == "player" ) then | ||
outputChatBox(getPlayerName(killer).." has killed ".. getPlayerName(source) ..".", thePlayer) -- output the kill message to the chatbox. | |||
outputChatBox(getPlayerName(killer).." has killed ".. getPlayerName(source) ..".",thePlayer) -- output the kill message to the chatbox. | |||
end | end | ||
end | end | ||
-- add the event handler | -- add the event handler | ||
addEventHandler("onClientPedWasted",getRootElement(),onWasted) | addEventHandler("onClientPedWasted", getRootElement(), onWasted) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | </section> |
Revision as of 17:00, 19 May 2011
This event is triggered whenever a ped dies.
Parameters
element killer, int weapon, int bodypart
- killer: A player element representing the killer.
- weapon: An integer representing the killer weapon or the death reason.
- bodypart: An integer representing the bodypart the player was damaged.
- 3: Torso
- 4: Ass
- 5: Left Arm
- 6: Right Arm
- 7: Left Leg
- 8: Right Leg
- 9: Head
Source
The source of this event is the ped that died.
Example
Click to collapse [-]
ClientThis example outputs a message every time a player kills another player.
-- define the event handler function function onWasted(killer, weapon, bodypart) if ( killer and getElementType(killer) == "player" ) then outputChatBox(getPlayerName(killer).." has killed ".. getPlayerName(source) ..".", thePlayer) -- output the kill message to the chatbox. end end -- add the event handler addEventHandler("onClientPedWasted", getRootElement(), onWasted)
See Also
Client ped events
- onClientPedDamage
- onClientPedHeliKilled
- onClientPedHitByWaterCannon
- onClientPedVehicleEnter
- onClientPedVehicleExit
- onClientPedWasted
- onClientPedWeaponFire
- onClientPedStep
Client event functions
- triggerLatentServerEvent
- triggerServerEvent
- Shared
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled