29.06.2012, 06:10
Quote:
I want a command that when you type /god you won't take damage.
If you read.. It says what i want, also, who said I was mad.. |
Код HTML:
CMD:god(playerid, params[]) { if(GodMode[playerid] == 0) //god mode not set, lets set it { SetPlayerHealth(playerid, INFINITY); //set the health to infinity GodMode[playerid] = 1; //set godmode to true SendClientMessage(playerid, 0xFF0000FF, "God mode Enabled"); } else if(GodMode[playerid] == 1) //god mode set .. lets unset it { SetPlayerHealth(playerid, 100.0); //set health to 100% GodMode[playerid] = 0; //set godmode to false SendClientMessage(playerid, 0xFF0000FF, "God mode Disabled"); } return 1; }