SA-MP Forums Archive
Help - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help (/showthread.php?tid=572111)



Help - Edw - 25.04.2015

I have a problem, I tried to do a radio system in a given area but do spam.

timer
PHP код:
SetTimer("ScenaMusic",1000,true); 
PHP код:
forward ScenaMusic();
public 
ScenaMusic()
{
    for(new 
i=0i<MAX_PLAYERSi++)
    {
        if(
PlayerToPoint(50.0i226.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;




Re: Help - Edw - 25.04.2015

fixed.