13.05.2012, 09:12
Try this:
Hope it helped.
Btw, If you want a different audio stream, then goto www.shoutcast.com
P.S. I Scripted this. ;]
pawn Код:
. (Ignore this dot)
}
if(strcmp("/radio", cmdtext, true, 10) == 0)
{
PlayAudioStreamForPlayer(playerid, "http://yp.shoutcast.com/sbin/tunein-station.pls?id=1177953");
SendClientMessage(playerid, COLOR_GREEN, "You are now listening to the Vocal Trance Radio!");
SendClientMessage(playerid, COLOR_RED, "Type /stopradio to turn off the radio!");
return 1;
}
if(strcmp("/stopradio", cmdtext, true, 10) == 0)
{
StopAudioStreamForPlayer(playerid);
SendClientMessage(playerid, COLOR_GREEN, "You have turned the radio off!");
return 1;
}
Btw, If you want a different audio stream, then goto www.shoutcast.com
P.S. I Scripted this. ;]