25.04.2015, 14:55
I have a problem, I tried to do a radio system in a given area but do spam.
timer
timer
PHP код:
SetTimer("ScenaMusic",1000,true);
PHP код:
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;
}