StopAudioStreamForPlayer

StopAudioStreamForPlayer

Description:
Function StopAudioStreamForPlayer stops the current audio stream for a player.
Function StopAudioStreamForPlayer was added in 0.3d and will not work in earlier versions!


Parameters:
(playerid)
int playerid The player you want to stop the audio stream for.


Return Values:
This function does not return any specific values.


Examples:
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.