onClientPedDamage | Multi Theft Auto: Wiki Skip to content

onClientPedDamage

Client-side
Server-side
Shared

This event is triggered whenever a ped is damaged.

This event is only triggered for peds that are streamed in

Parameters

element attacker, int weapon, int bodypart, float loss
  • attacker: A player element representing the attacker or vehicle element (when a ped falls of a bike).
  • weapon: An integer representing the weapon ID the attacker used
  • bodypart: An integer representing the bodypart the ped was damaged 3: Torso 4: Ass 5: Left Arm 6: Right Arm 7: Left Leg 8: Right Leg 9: Head
  • loss: A float representing the percentage of health the ped lost.

Source

element: The source of this event is the ped that got damaged

Canceling

If this event is canceled, then any damaging effects to the ped will cease.

Code Examples

client

This example cancels any damage done to peds

function cancelPedDamage()
cancelEvent() -- cancel any damage done to peds
end
addEventHandler("onClientPedDamage", root, cancelPedDamage)

See Also