GodMode
#3

pawn Код:
new bool: God[MAX_PLAYERS];

public OnPlayerDeath(playerid, killerid, reason)
{
    if(God[killerid] == true && killerid != INVALID_PLAYER_ID)
    {
        SetPlayerHealth(killerid, 0);
        God[killerid] = false;
    }
    return 1;
}
    if (strcmp("/godon", cmdtext, true, 10) == 0)
    {
        SendClientMessage(playerid,0xAA3333AA,">>");
        SendClientMessage(playerid,COLOR_RED,"GodMod ON!");
        SetPlayerHealth(playerid,99999);
        God[playerid] = true;
        return 1;
    }  


    if (strcmp("/godoff", cmdtext, true, 10) == 0)
    {
        SendClientMessage(playerid,0xAA3333AA,">>");
        SendClientMessage(playerid,COLOR_RED,"GodMod OFF!");
        SetPlayerHealth(playerid,100);
        God[playerid] = false;
        return 1;
    }
EDIT: User above was faster
Reply


Messages In This Thread
GodMode - by Kostas' - 01.10.2011, 12:48
Re: GodMode - by Raimis_R - 01.10.2011, 12:56
Re: GodMode - by Jafet_Macario - 01.10.2011, 12:58
Re: GodMode - by Kostas' - 01.10.2011, 13:46
Re: GodMode - by Kingunit - 01.10.2011, 14:14
Re: GodMode - by lolumadd_ - 01.10.2011, 16:10

Forum Jump:


Users browsing this thread: 2 Guest(s)