26.03.2013, 13:08
What happened to this script actually?
pawn Код:
CMD:god(playerid,params[])
{
if(God[playerid])
{
SetPlayerHealth(playerid, 100000.0);
God[playerid] = 1;
return SendClientMessage(playerid, yellow, "Godmode has been enabled!");
}
else
{
God[playerid] = 0;
SetPlayerHealth(playerid, 100.0);
return SendClientMessage(playerid, red, "Godmode has been disabled!");
}
}