SA-MP Forums Archive
Help music. - 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 music. (/showthread.php?tid=569800)



Help music. - itachi - 02.04.2015

new string[260];
for(new i; i < MAX_PLAYERS; i++) if(IsPlayerConnected(i))
PlayAudioStreamForPlayer(i,"http://k003.kiwi6.com/hotlink/mjqzbmqt0m/Kontrafakt---JBMNT-prod-Maiky-Beatz.mp3");
format(string,sizeof(string),"{FF0000}[FP] ADMIN %s ON Music Kontrafakt JBMNT",GetName(playerid));
SendClientMessageToAll(0xFFFF00C8,string);
return 1;
}

error : declaration of a local variable must appear in a compound block
line : new string[260];



Re: Help music. - willsuckformoney - 03.04.2015

pawn Код:
new string[260];
for(new i; i < MAX_PLAYERS; i++)
{
    if(IsPlayerConnected(i))
    {
        PlayAudioStreamForPlayer(i,"http://k003.kiwi6.com/hotlink/mjqzbmqt0m/Kontrafakt---JBMNT-prod-Maiky-Beatz.mp3");
        format(string,sizeof(string),"{FF0000}[FP] ADMIN %s ON Music Kontrafakt JBMNT",GetName(playerid));
        SendClientMessageToAll(0xFFFF00C8,string);
    }
}



Re: Help music. - CalvinC - 03.04.2015

willsuckformoney, that will flood messages, his current code is fine.

Show the lines above.