跳到主要内容

StopAudioStreamForPlayer

Description

Stops the current audio stream for a player.

NameDescription
playeridThe player you want to stop the audio stream for.

Returns

This function does not return any specific values.

Examples

public OnPlayerStateChange(playerid, PLAYER_STATE:newstate, PLAYER_STATE:oldstate)
{
// If the player exits a vehicle
if (oldstate == PLAYER_STATE_DRIVER || oldstate == PLAYER_STATE_PASSENGER)
{
StopAudioStreamForPlayer(playerid); // Stop the audio stream
}
return 1;
}