Anti God-mode problem
#1

Hello everyone, i am trying these days to create an anti god-mode for my Server.
My problem is not comparing right, so it detects non god-mode users.

My Code:

PHP код:
new Float:health_a,Float:health_bFloat:health_c;
public 
OnPlayerUpdate(playerid)
{
    
GetPlayerHealth(playerid,health_a); //getting and saving players hp on health_a
    
return 1;
}
public 
OnPlayerTakeDamage(playeridissueridFloatamountweaponid)
{
    
health_c health_a amount//minus the amount of damage from previous player health and saving it on health_c
    
GetPlayerHealth(playerid,health_b);//getting the current player health
    
if(health_c <= health_b)//checking if current health is equals or larger than the previous hp
    
{
        if (
GetPlayerVirtualWorld(playerid)==1)//checking the world (using different worlds from normal playing and deathmatch)
        
{
            if(!
IsPlayerLuxAdminLevel(playerid,10))//if player is not admin level 10
            
{
                new 
pname[MAX_PLAYER_NAME];
                new 
string[170];
                
GetPlayerName(playeridpnamesizeof(pname));
                
format(stringsizeof(string), "%s(%d) tried to GOD-Mode in dm/minigun."pnameplayerid);
                
MessageToAdmins(-1,string);
                
ResetPlayerWeapons(playerid);
                
SetPlayerHealth(playerid100);
                
SetPlayerVirtualWorld(playerid0);
                
SetPlayerPos(playerid,-1670.1058,1303.2300,7.1820);
                
SetCameraBehindPlayer(playerid);
                
SendClientMessage(playerid, -"Health Cheat detected, you have been automaticly teleported to spawn.");
                return 
1;
            }
        }
    }
    return 
1;

Can anyone help me?
Reply


Messages In This Thread
Anti God-mode problem - by ]Rafaellos[ - 26.01.2013, 08:48
AW: Anti God-mode problem - by Skimmer - 26.01.2013, 09:06
Re: Anti God-mode problem - by ]Rafaellos[ - 26.01.2013, 09:21
Re: Anti God-mode problem - by Patrick - 26.01.2013, 09:25
Re: Anti God-mode problem - by ]Rafaellos[ - 26.01.2013, 09:33
Re: Anti God-mode problem - by Patrick - 26.01.2013, 09:36
Re: Anti God-mode problem - by ]Rafaellos[ - 26.01.2013, 09:44
Re: Anti God-mode problem - by ]Rafaellos[ - 27.01.2013, 08:45
Re: Anti God-mode problem - by Threshold - 27.01.2013, 09:13
Re: Anti God-mode problem - by ]Rafaellos[ - 27.01.2013, 09:18

Forum Jump:


Users browsing this thread: 5 Guest(s)