OnClientPedHitByWaterCannon: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client event}} This event is fired when a ped is hit by a water cannon. Also note that this event is only triggered for ped nearby the local player's camera. This is ...")
 
Line 4: Line 4:
==Parameters==
==Parameters==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
player playerHit
ped pedHit
</syntaxhighlight>
</syntaxhighlight>
*'''pedrHit:''' the ped which got shot by the water cannon
*'''pedHit:''' the ped which got shot by the water cannon


==Source==
==Source==

Revision as of 11:07, 3 May 2012

This event is fired when a ped is hit by a water cannon. Also note that this event is only triggered for ped nearby the local player's camera. This is due to elements far away being streamed out.

Parameters

ped pedHit
  • pedHit: the ped which got shot by the water cannon

Source

The source of this event is the vehicle who shot the water cannon.

Example

Click to collapse [-]
Client

This example does nothing

 -- todo

See Also

Client player events


Client event functions