03.02.2015, 11:02
Alright..
I got a lil' bug. if i do /givecash it'll reset my cash AND ban me.
But i did not hack
I got a lil' bug. if i do /givecash it'll reset my cash AND ban me.
But i did not hack
PHP код:
forward GivePlayerMoneyEx(playerid, ammount);
public GivePlayerMoneyEx(playerid, ammount)
{
OldMoney[playerid] = GetPlayerMoney(playerid);
NewMoney[playerid] = ammount;
GivePlayerMoney(playerid, ammount);
return 1;
}
forward CheckMoney();
public CheckMoney()
{
for(new i =0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(GetPlayerMoney(i) > NewMoney[i])
{
ResetPlayerMoney(i);
GivePlayerMoney(i, OldMoney[i]);
Ban(i);
}
}
}
return 1;
}