strcmp to zcmd
#2

To operate the command
1) You must have #include zcmd
2) You must delete OnPlayerCommandText
Код:
COMMAND:godon(playerid, params[])
{
#pragma unused params
if (God[playerid] == 1)
{
GameTextForPlayer(playerid, "~r~GOD ~r~MODE ~r~DISABLED", 3000, 3);
SetPlayerHealth(playerid, 100);
God[playerid] = 0;
return 1;
}
else if(God[playerid] == 0)
{
GameTextForPlayer(playerid, "~r~GOD ~r~MODE ~r~ENABLED", 3000, 3);
God[playerid] = 1;
SetPlayerArmour(playerid, 10000);
SetPlayerHealth(playerid, 10000);
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: 1 Guest(s)