24.01.2011, 10:17
pawn Код:
forward AntiMoney();
public AntiMoney()
{
for (new i = 0; i != MAX_PLAYERS; ++i)
{
if (IsPlayerConnected(i))
{
if (GetPlayerMoney(i) > 9999998)
{
SendClientMessage(i, 0xFFFFFF, "You forgot to pay the tax.");
new string[128];
new pName[MAX_PLAYER_NAME];
GetPlayerName(i, pName, sizeof(pName));
format(string, 128, "%s was auto-banned for Money Cheat.", pName);
SendClientMessageToAll(COLOR_RED, string);
Ban(i);
}
}
}
}
return 1;
}
error 010: invalid function or declaration