22.11.2010, 21:36
pawn Код:
CMD:groups(playerid, params[])
{
#pragma unused params
new string[128];
SendClientMessage(playerid, WHITE, "------------------------------------------------------------");
for(new i = 0; i < MAX_GROUPS; i++)
{
format(GlobalQuery, sizeof(GlobalQuery), "SELECT * FROM Groups ORDER BY Groupid LIMIT %d,1",i);
mysql_query(GlobalQuery);
mysql_store_result();
if(mysql_num_rows() > 0)
{
format(string, sizeof(string), "Name: %s(%d)", Groups[i][GroupName], i);
SendClientMessage(playerid, GREY, string);
}
}
SendClientMessage(playerid, WHITE, "------------------------------------------------------------");
return 1;
}
this makes it show 20 groups(MAX_GROUPS) even though noone is online