[Include] [INC] Money Anticheat
#23

Code:
new PlayerInfo[MAX_PLAYERS][pMoney];// переменная в которой хранятся деньги
Code:
public OnPlayerUpdate()
{
    AntiMoneyCheat(playerid);
}
Code:
stock AntiMoneyCheat(playerid)
{
	new clientmoney = GetPlayerMoney(playerid);
	if(clientmoney < 0) return SetPlayerMoneyZ(playerid,0);
	if(clientmoney == PlayerInfo[playerid][pMoney]) return 1;
	if(clientmoney < PlayerInfo[playerid][pMoney]) return SetPlayerMoneyZ(playerid,clientmoney);
	if(clientmoney > PlayerInfo[playerid][pMoney]) return SetPlayerMoneyZ(playerid,PlayerInfo[playerid][pMoney]);
}
// Функции денег
Code:
stock GivePlayerMoneyZ(playerid, money)
{
	PlayerInfo[playerid][pMoney] += money;
	return SetPlayerMoneyZ(playerid, PlayerInfo[playerid][pMoney]);
}

stock SetPlayerMoneyZ(playerid, money)
{
    PlayerInfo[playerid][pMoney] = money;
	ResetPlayerMoney(playerid);
	return GivePlayerMoney(playerid,money);
}

stock GetPlayerMoneyZ(playerid)
{
    return PlayerInfo[playerid][pMoney];
}
Reply


Messages In This Thread
[INC] Money Anticheat - by ^Woozie^ - 03.01.2010, 10:32
Re: [INC] Money Anticheat - by MX_Master - 03.01.2010, 11:14
Re: [INC] Money Anticheat - by [Saint] - 03.01.2010, 11:16
Re: [INC] Money Anticheat - by MX_Master - 03.01.2010, 12:43
Re: [INC] Money Anticheat - by ^Woozie^ - 03.01.2010, 14:28
Re: [INC] Money Anticheat - by Zeex - 03.01.2010, 15:11
Re: [INC] Money Anticheat - by MX_Master - 03.01.2010, 16:48
Re: [INC] Money Anticheat - by Serafim_sd - 03.01.2010, 18:02
Re: [INC] Money Anticheat - by Serafim_sd - 03.01.2010, 18:06
Re: [INC] Money Anticheat - by Zeex - 03.01.2010, 18:28
Re: [INC] Money Anticheat - by ^Woozie^ - 03.01.2010, 18:42
Re: [INC] Money Anticheat - by CrunkBankS - 13.01.2010, 18:38
Re: [INC] Money Anticheat - by ^Woozie^ - 13.01.2010, 19:58
Re: [INC] Money Anticheat - by CrunkBankS - 14.01.2010, 04:53
Re: [INC] Money Anticheat - by ^Woozie^ - 14.01.2010, 11:11
Re: [INC] Money Anticheat - by noobik - 21.01.2010, 17:37
Re: [INC] Money Anticheat - by CrunkBankS - 22.01.2010, 10:33
Re: [INC] Money Anticheat - by ^Woozie^ - 22.01.2010, 15:53
Re: [INC] Money Anticheat - by CrunkBankS - 22.01.2010, 18:29
Re: [INC] Money Anticheat - by ZiGGi - 23.01.2010, 11:34
Re: [INC] Money Anticheat - by Toney - 23.01.2010, 19:54
Re: [INC] Money Anticheat - by CrunkBankS - 24.01.2010, 07:27
Re: [INC] Money Anticheat - by ZiGGi - 30.01.2010, 11:33
Re: [INC] Money Anticheat - by [Saint] - 30.01.2010, 11:49
Re: [INC] Money Anticheat - by ZiGGi - 30.01.2010, 13:01
Re: [INC] Money Anticheat - by Riaz - 30.01.2010, 15:39
Re: [INC] Money Anticheat - by kAND - 30.01.2010, 16:13
Re: [INC] Money Anticheat - by CrunkBankS - 30.01.2010, 17:04
Re: [INC] Money Anticheat - by kAND - 30.01.2010, 17:23
Re: [INC] Money Anticheat - by CrunkBankS - 30.01.2010, 18:48
Re: [INC] Money Anticheat - by lost13 - 13.05.2010, 17:43

Forum Jump:


Users browsing this thread: 1 Guest(s)