26.11.2016, 15:16
Since you didn't state the problem i didn't know what was wrong with it but you've alot of unnecessary lines
Код:
CMD:music(playerid, params[])
{
if(pInfo[playerid][pAdminLevel] >= 6) return 0;
new string[128], name[24];
if(isnull(params)) return SendClientMessage(playerid, COLOR_RED, "USAGE: /music [URL]"); {
format(string,sizeof(string),"Admin %s started a new song!",name);
SendClientMessageToAll(-1,string);
foreach(Player, i) {//Depends on your foreach version
PlayAudioStreamForPlayer(i, params);
} else {
SendClientMessage(playerid,-1,""chat""COL_LIGHTBLUE" You do not have the right admin permissions for this command!");
}
return true;
}

