God mode.
#1

Does someone have a godmode script?
Reply
#2

Here is solution on all your problems Click Me!
Reply
#3

Just use SetPlayerHealth(playerid,999999999);. SImple as that.
Reply
#4

10000 is enough
Reply
#5

Quote:
Originally Posted by Roberto80
Посмотреть сообщение
10000 is enough
Not if you use a minigun.
Reply
#6

use
PHP код:
CMD:god(playeridparams[])
{
            
SetPlayerArmour(playerid100000);
            
SetPlayerHealth(playerid100000);
            
SetTimerEx("GodHealthCheck"3000false"i"playerid);
            return 
1;
}
forward GodHealthCheck(playerid);
public 
GodHealthCheck(playerid)
{
    new 
FloatcHealth;
    new 
FloatcArmor;
    
GetPlayerHealth(playeridcHealth);
    
GetPlayerArmour(playeridcArmor);
    if(
cHealth 100)
    {
        
SetPlayerHealth(playeridcHealth+5000);
    }
    if(
cArmor 100)
    {
        
SetPlayerArmour(playeridcArmor+5000);
    }

I think this is enough
Reply
#7

Код:
CMD:god(playerid)
{
    SetPlayerHealth(playerid, 99999);
    return 1;
}
Reply
#8

You can use a bool,true under god cmd
And use OnPlayerTakeDamage,if the bool is true,give health back,and health will stay 100
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)