OnClientPedHitByWaterCannon

From Multi Theft Auto: Wiki
Revision as of 20:44, 25 January 2015 by HuX (talk | contribs)
Jump to navigation Jump to search

This event is fired when a ped is hit by a water cannon.

[[{{{image}}}|link=|]] Note: This event is only triggered for peds that are streamed in

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.

Type

This event is a pre reaction event meaning it occurs before any game level reaction to the collision which include:

  • Peds flying off
  • Peds being knocked down

Cancel effect

If this event is canceled, the Ped will not be knocked down

Example

Click to collapse [-]
Client

This example outputs who got hit by water cannon.

 function outputPlayerHitByWater(thePed)
 local hitPed = getPlayerName(thePed) or "ped"
 outputChatBox(hitPed.." got hit by water cannon!", 255, 0, 0)
 end
 addEventHandler("onClientPedHitByWaterCannon",root,outputPlayerHitByWater)
 

Example was created by HuX

Requirements

Minimum server version n/a
Minimum client version 1.3.0-9.03931

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.3.0-9.03931" />

See Also

Client ped events


Client event functions