Never fear! Modder Aegis is here!
  1. To get the God mode cheat go to the main Notrium Directory (the big notrium folder thing with all the stuff in it) 2. Go to the data folder, then to the default folder. 3. Open the file called "scripts" (preferably as notepad) 4. The first thing you will see will say:
 Player dies due to lack of health;//name   0;//identifier   1;//run without calling (set to 0 if you use the script for example as a wield script)   0;//call position, 0=player location, 1=mouse location   0;//calling creature 0=player, 1=creature nearest to the mouse, 2=player controlled creature   200;//run every n milliseconds   none;//message      0;//message type, 0=quick message, 1=journal   none;//sound, none for nothing   0;//delay script for n seconds after conditions met   1;//disabled after first use, 0=no, 1=yes   begin_conditions;     5;//condition       0.000000;//condition parameter0       0.100000;//condition parameter1   end_conditions;   begin_effects;     25;//effect number       3.000000;//parameter1       1.000000;//parameter2       0.000000;//parameter3       0.000000;//parameter4   end_effects;  This is bascially the coding which tells the game that you should die. So get rid of it! (only the text I specified)
  5. And, unfortunately, you can't turn off God mode. If you want me to, I could create a god mode item for you.  6. Then go to the dialogs file. 7.You will see this:
 Pod computer mumble 1;//name   0;//identifier   System error!;//text   1000;//duration   -1;//next dialog line (-1=none)   1;//text color r   0;//text color g   0;//text color b Pod computer mumble 2;//name   1;//identifier   Fire Hazard!;//text   1000;//duration   -1;//next dialog line (-1=none)   1;//text color r   0;//text color g   0;//text color b Pod computer mumble 3;//name   2;//identifier   Warning!;//text   1000;//duration   -1;//next dialog line (-1=none)   1;//text color r   0;//text color g   0;//text color b 
  Change it to this:
 
 Pod computer mumble 1;//name   0;//identifier   FAIL!;//text   1000;//duration   -1;//next dialog line (-1=none)   1;//text color r   0;//text color g   0;//text color b Pod computer mumble 2;//name   1;//identifier   PANCAKES ARE GOOD FOR YOU!;//text   1000;//duration   -1;//next dialog line (-1=none)   1;//text color r   0;//text color g   0;//text color b Pod computer mumble 3;//name   2;//identifier   BAAAAAAAAAAAAAAAAAA!!!!!;//text   1000;//duration   -1;//next dialog line (-1=none)   1;//text color r   0;//text color g   0;//text color b 
  For extra awesomeness.  
 |