OnClientPedHitByWaterCannon: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 23: | Line 23: | ||
==Example== | ==Example== | ||
<section class="client" name="Client" show="true"> | <section class="client" name="Client" show="true"> | ||
This example | This example outputs who got hit by water cannon. | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function outputPlayerHitByWater(thePed) | |||
local hitPed = getPlayerName(thePed) or "ped" | |||
outputChatBox(hitPed.." got hit by water cannon!", 255, 0, 0) | |||
end | |||
addEventHandler("onClientPedHitByWaterCannon",root,outputPlayerHitByWater) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
'''Example was created by HuX''' | |||
</section> | </section> | ||
Revision as of 20:42, 25 January 2015
Script Example Missing Event OnClientPedHitByWaterCannon needs a script example, help out by writing one. | |
Before submitting check out Editing Guidelines Script Examples. |
This event is fired when a ped is hit by a water cannon.
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 [-]
ClientThis 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
This template will be deleted.
See Also
Client ped events
- onClientPedDamage
- onClientPedHeliKilled
- onClientPedHitByWaterCannon
- onClientPedVehicleEnter
- onClientPedVehicleExit
- onClientPedWasted
- onClientPedWeaponFire
- onClientPedStep
Client event functions
- triggerLatentServerEvent
- triggerServerEvent
- Shared
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled