19.07.2012, 23:05
Tested & working,
nice song by the way
nice song by the way

pawn Код:
if(!strcmp(cmdtext, "/playall", true, 8)) //for samps sake why strcmp, use a command processor better :D
{
new url[128];//depending on how long the url size you think will be
format(url, sizeof(url), "%s",cmdtext[9]);
if(!IsPlayerAdmin(playerid)) return 0;
for(new i = 0; i < MAX_PLAYERS; i++) //foreach would be way better
{
PlayAudioStreamForPlayer(i,url);
}
return 1;
}