08.12.2011, 00:43
Alguйm sabe o pq n ta aparecendo o som?
pawn Код:
new RadioID[MAX_PLAYERS];
new Radio[MAX_PLAYERS];
if(dialogid == 995)
{
switch(listitem)
{
case 0:
{
ChangeRadioStation(playerid, "http://yp.shoutcast.com/sbin/tunein-station.pls?id=1274603");
}
case 1:
{
ChangeRadioStation(playerid, "http://yp.shoutcast.com/sbin/tunein-station.pls?id=2947897");
}
case 2:
{
ChangeRadioStation(playerid, "http://yp.shoutcast.com/sbin/tunein-station.pls?id=616366");
}
case 3:
{
ChangeRadioStation(playerid, "http://yp.shoutcast.com/sbin/tunein-station.pls?id=37586");
}
case 4:
{
ChangeRadioStation(playerid, "http://yp.shoutcast.com/sbin/tunein-station.pls?id=1177953");
}
case 5:
{
ChangeRadioStation(playerid, "http://yp.shoutcast.com/sbin/tunein-station.pls?id=1280610");
}
}
}
stock ChangeRadioStation(playerid, const url[])
{
format(Radio[playerid],strlen(url), url);
for(new i=0; i<MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
new Float:X, Float:Y, Float:Z, Float:Distance = 25.0;
GetPlayerPos(i, X, Y, Z);
StopAudioStreamForPlayer(i);
PlayAudioStreamForPlayer(i, Radio[i], X, Y, Z, Distance, 1);
RadioID[playerid] = i;
}
}
return 0;
}