SetTimer("ScenaMusic",1000,true);
forward ScenaMusic();
public ScenaMusic()
{
for(new i=0; i<MAX_PLAYERS; i++)
{
if(PlayerToPoint(50.0, i, 226.1218,-1815.9639,7.0547))
{
if(radio[i] == 0)
{
PlayAudioStreamForPlayer(i,"http://asculta.radiotaraf.com:7100",1267.3889,-891.6357,42.8828,50,1);
radio[i] = 1;
}
}
else
{
if(radio[i] == 1)
{
radio[i] = 0;
StopAudioStreamForPlayer(i);
}
}
}
return 1;
}