god mode on /off
#9

pawn Код:
//Out of any callback, down the defines
new GodMode[MAX_PLAYERS] = 0;
new GMTimer;

//ZCMD command, outside any callback
COMMAND:godmode(playerid, cmdtext[])
{
    if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "Youre not admin!");
    if(GodMode[playerid] == 0)
    {
        GMTimer = SetTimerEx("GodMod", 1500, true, "i", playerid);
        SetPlayerHealth(playerid, 10000);
        SendClientMessage(playerid, -1, "God mode is now on");
        GodMode[playerid] = 1;
    }
    else
    {
        KillTimer(GMTimer);
        SetPlayerHealth(playerid, 100);
        SendClientMessage(playerid, -1, "God mode is now off");
        GodMode[playerid] = 0;
    }
    return 1;
}

//Forward and public, out of any callback aswell
forward GodMod(playerid);
public GodMod(playerid)
{
    SetPlayerHealth(playerid, 10000);
    return 1;
}
Try this one, also im not sure if it gives any errors
Reply


Messages In This Thread
god mode on /off - by pepp1 - 05.08.2008, 06:49
Re: god mode on /off - by Puffmac - 05.08.2008, 06:53
Re: god mode on /off - by Dragan - 05.08.2008, 07:00
Re: god mode on /off - by GTAgetaway - 16.01.2009, 09:50
Re: god mode on /off - by flames - 16.01.2009, 09:56
Re: god mode on /off - by DMSOrg - 16.01.2009, 11:17
Re: god mode on /off - by Mariooo - 17.07.2011, 14:30
Re: god mode on /off - by robintjeh - 17.07.2011, 14:35
Re: god mode on /off - by Wesley221 - 17.07.2011, 14:37
Re: god mode on /off - by Kush - 17.07.2011, 15:50

Forum Jump:


Users browsing this thread: 2 Guest(s)