OnClientPlayerDamage: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (See Also for client player events)
Line 31: Line 31:


==See Also==
==See Also==
{{Event_functions}}
===Client player events===
{{Client_player_events}}
===Client event functions===
{{Client_event_functions}}

Revision as of 12:35, 12 January 2008

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
  • 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 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

Client player events


Client event functions