OnClientPlayerChoke: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
{{Needs_Checking|responsiblePed is always nil}} | {{Needs_Checking|responsiblePed is always nil}} | ||
{{Needs_Checking|Check it is only triggered for the local player and the source is correct}} | {{Needs_Checking|Check it is only triggered for the local player and the source is correct}} | ||
This event is fired when | This event is fired when the local player chokes due to the effect of a weapon such as tear gas grenades, fire extinguishers and spray cans. | ||
==Parameters== | ==Parameters== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> |
Revision as of 03:22, 20 January 2015
This article needs checking. | |
Reason(s): responsiblePed is always nil |
This article needs checking. | |
Reason(s): Check it is only triggered for the local player and the source is correct |
This event is fired when the local player chokes due to the effect of a weapon such as tear gas grenades, fire extinguishers and spray cans.
Parameters
int weaponID, ped responsiblePed
- weapon: an int representing the ID of the weapon which caused the choking.
- responsiblePed: the ped responsible for causing the choking, possiblly nil.
Source
The source of this event is the player who is choking. (Local player only)
Cancel effect
If this event is canceled, the player will not be choked.
Example
Click to collapse [-]
ClientThis example disables choking effects from the tear gas grenades.
function cancelTearGasChoking(weaponID, responsiblePed) if (weaponID==17) then cancelEvent() end end addEventHandler("onClientPlayerChoke", getLocalPlayer(), cancelTearGasChoking)
See Also
Client player events
- onClientPlayerChangeNick
- onClientPlayerChoke
- onClientPlayerDamage
- onClientPlayerHeliKilled
- onClientPlayerHitByWaterCannon
- onClientPlayerJoin
- onClientPlayerPickupHit
- onClientPlayerPickupLeave
- onClientPlayerQuit
- onClientPlayerRadioSwitch
- onClientPlayerSpawn
- onClientPlayerStealthKill
- onClientPlayerStuntFinish
- onClientPlayerStuntStart
- onClientPlayerTarget
- onClientPlayerVehicleEnter
- onClientPlayerVehicleExit
- onClientPlayerVoicePause
- onClientPlayerVoiceResumed
- onClientPlayerVoiceStart
- onClientPlayerVoiceStop
- onClientPlayerWasted
- onClientPlayerWeaponFire
- onClientPlayerWeaponSwitch
Client event functions
- triggerLatentServerEvent
- triggerServerEvent
- Shared
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled