OnClientPlayerDamage
Jump to navigation
Jump to search
This event is triggered whenever a player is damaged.
Parameters
player attacker, int weapon, int bodypart
- attacker: A player element representing the attacker.
- weapon: An integer representing the weapon ID the attacker used
- bodypart: An integer representing the bodypart the player was damaged
Source
The source of this event is the player that got damaged
Cancel effect
If this event is canceled, then any damaging effects to the local player will cease.
Example
This example prevents any damage from the minigun.
function stopMinigunDamage ( attacker, weapon, bodypart ) if ( weapon == 38 ) then --if the weapon used was the minigun cancelEvent() --cancel the event end end addEventHandler ( "onClientPlayerDamage", getLocalPlayer(), stopMinigunDamage )
See Also
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled