strcmp to zcmd
#5

Remove the callback of OnPlayerCommandText since you won't use it and add this:

pawn Код:
CMD:god(playerid, params[])
{
    if(God[playerid])
    {
         GameTextForPlayer(playerid, "~r~GOD ~r~MODE ~r~DISABLED", 3000, 3);
         SetPlayerHealth(playerid, 100);
         God[playerid] = 0;
         return 1;
    }
    else
    {
         GameTextForPlayer(playerid, "~r~GOD ~r~MODE ~r~DISABLED", 3000, 3);
         SetPlayerHealth(playerid, 100);
         God[playerid] = 1;
         return 1;
    }
    return 1;
}
Reply


Messages In This Thread
strcmp to zcmd - by kbalor - 26.06.2012, 08:01
Re: strcmp to zcmd - by 404 Not Found - 26.06.2012, 08:04
Re: strcmp to zcmd - by kbalor - 26.06.2012, 08:10
Re: strcmp to zcmd - by 404 Not Found - 26.06.2012, 08:13
Re: strcmp to zcmd - by Randy More - 26.06.2012, 08:15
Re: strcmp to zcmd - by kbalor - 26.06.2012, 08:22
Re: strcmp to zcmd - by Whitetiger - 26.06.2012, 08:27
Re: strcmp to zcmd - by Randy More - 26.06.2012, 08:29
Re: strcmp to zcmd - by Skaizo - 26.06.2012, 08:32
Re: strcmp to zcmd - by kbalor - 26.06.2012, 08:35

Forum Jump:


Users browsing this thread: 3 Guest(s)