OnClientPlayerVoicePause
Jump to navigation
Jump to search
This event is triggered when a player's voice sound is paused using setSoundPaused.
Parameters
string reason
- reason: the reason for the pause, this can be only "paused".
Source
The source of this event is the player whose voice got paused.
Example
This example outputs nick of whoever's voice is paused.
addEventHandler("onClientPlayerVoicePause", root, function () outputChatBox(getPlayerName(source) .. "'s voice got paused.") end )
See Also
Client sound events
- onClientSoundBeat
- onClientSoundChangedMeta
- onClientSoundFinishedDownload
- onClientSoundStarted
- onClientSoundStopped
- onClientSoundStream
Client event functions
- triggerLatentServerEvent
- triggerServerEvent
- Shared
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled