To become a God: If you think it is impossible, you are mistaken. However, it works but only in the game. So, if you want to toggle the god mode, do the following.
• Step 1: open the devmode.lua with any text editor and paste the code you see below in the very bottom.
function ToggleGod()
if (not god) then
god=1;
else
god=1-god;
end
if (god==1) then
System:LogToConsole("God-Mode ON");
else
System:LogToConsole("God-Mode OFF");
end
end
Input:BindCommandToKey("#ToggleGod()","backspace",1);
• Step 2: Press backspace. Now the god command must appear in the upper right side of the screen. Note that the number next to it means how many times you died (health = 0).
To add color: To use colors in your name you need to do the following thing. When entering your character’s name, type any code you find below. Note that it is possible to use more than one color in one name!
$0 = Black
$1 = White
$2 = Blue
$3 = Green
$4 = Red
$5 = Light Blue
$6 = Yellow
$7 = Pink
$8 = Orange
$9 = Gray