13.04.2016, 20:18
Whenever i'm using the command /conline it shows 1000 messages with "[] (ID: X)"
What should I do?
What should I do?
PHP код:
CMD:conline(playerid,params[]){
LoggedCMD
if(!strcmp(DB[param[0]][Clan],"None")) return MSG(playerid,C_RED,"[Error] {FF9999}You're not a clan member.");
format(String,sizeof(String),"---------------- [%s] ----------------",DB[playerid][Clan]);
MSG(playerid,C_NICE,String);
for(new i=0;i<MAX_PLAYERS;i++){
if(!strcmp(DB[i][Clan],DB[playerid][Clan])){
format(String,sizeof(String),"[%s] %s (ID: %i)",DB[i][CRank],GetName(i),i);
MSG(playerid,C_NICE2,String);}}
return 1;}