15.08.2010, 05:55
Quote:
foreach(Player, i)
{ GetPlayerName(i, giveplayer, sizeof(giveplayer)); Kick(i); format(string, sizeof(string), "%s.ini", giveplayer); fremove(string); } I made a command to delete the accounts of everyone online and it doesn't work, can someone tell me why? thanks |
pawn Код:
public OnPlayerConnect(playerid)
{
GetPlayerName(playerid, giveplayer, sizeof(giveplayer));
format(string, sizeof(string), "%s.ini", giveplayer);
fremove(string);
Kick(playerid);
return 1;
}