StopAudioStreamForPlayer
From SA-MP Wiki
Description:
Stops the current audio stream for a player.
(playerid)
playerid | The player you want to stop the audio stream for. |
Return Values:
This function does not return any specific values.
Example Usage:
public OnPlayerStateChange(playerid, newstate, oldstate) { // If the player exits a vehicle if(oldstate == PLAYER_STATE_DRIVER || oldstate == PLAYER_STATE_PASSENGER) { StopAudioStreamForPlayer(playerid); // Stop the audio stream } return 1; }
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- PlayAudioStreamForPlayer: Plays a audio stream for a player.
- PlayerPlaySound: Play a sound for a player.