22.03.2011, 22:22
How am i supposed to fix a ''problem'' if i don't know what the problem is?
pawn Код:
if(!strcmp(cmd, "/gangs", true))
{
new str5[128];
SendClientMessage(playerid, COLOR_RED, "Available Gangs:");
for(new count; count <MAX_GANGS; count++)
{
if(Gang[count][Ident_ID])
{
format(str5, sizeof(str5), "%s", Gang[count][Ident_ID]);
SendClientMessage(playerid, COLOR_RED, str5);
}
}
return 1;
}


