09.01.2011, 14:31
I don't know what you want...like they said, store it in a file using dini or y_ini, and then read it when you want to show it. For example:
How else can we help?
pawn Код:
// Kick command increase the amount of kicks
dini_IntSet("ServerStats.ini","TotalKicks",dini_Int("ServerStats.ini","TotalKicks") + 1);
// Show kicks...
format(string,sizeof(string),"%s was kicked by admin %s, Total Kicks: %d",name[playerid],name[id],dini_Int("ServerStats.ini","TotalKicks"));
SendClientMessageToAll(string,COLOR_WHITE);