Listen to Radio without a vehicle?
#1

I can only enter a vehicle to listen radio, Can i change it to without a car?
What i want is type /music then the Radio will be playing

Код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
	// play an internet radio stream when they are in a vehicle
	if(newstate == PLAYER_STATE_DRIVER || newstate == PLAYER_STATE_PASSENGER)
	{
		PlayAudioStreamForPlayer(playerid, "http://www.di.fm/mp3/eurodance.pls");
	}
	// stop the internet stream
	else if(oldstate == PLAYER_STATE_DRIVER || oldstate == PLAYER_STATE_PASSENGER)
	{
	    StopAudioStreamForPlayer(playerid);
	}
	return 0;
}
Reply
#2

Put this in a command....

pawn Код:
PlayAudioStreamForPlayer(playerid, "http://www.di.fm/mp3/eurodance.pls");
Reply
#3

Quote:
Originally Posted by Norn
Посмотреть сообщение
Put this in a command....

pawn Код:
PlayAudioStreamForPlayer(playerid, "http://www.di.fm/mp3/eurodance.pls");
Thanks! works perfect but can you hide those Audio text when you playing?? like this ''Audio stream: http.......''
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)