3.6.2 Cheats

Open the console via F2 and then enter them.
  1  setGodMode(b: boolean);
  2  setBuildMode(b: boolean);
  3  setNoTarget(b: boolean);
  4  setFly(b: boolean);
  5  setDebugMode(b: boolean);
  6  setGravity(b: single);
  7  addItem(name: string; amount:integer);
  8  iwanttogotothesurface;
  9  newday;
 10  breakfast;
 11  midnight;
 12  printCurrentPosition;
 13  addAbility(name: string; amount:integer);
 14  loadMap(name: string);
 15  loadSynMap(name: string);
 16  disconnect;
 17  suicide;
 18  quit;
``boolean'' means you can use ``true'' (on) or ``false'' (off). Example: => setGodMode(true);
``single'' is a number: ``integer'' is a natural number: 1,2,3,4,... ``string'' is a text
Example:
  1  => addItem('Iron', 64*10);
This will add 10 blocks of iron.
  1  => addAbility('gameabilities_learningpoints', 40);
This will add 40 learning points.
Build Mode
  1  setBuildMode(true); makes building easier.
And for the interested reader: There is actual a fully self developed pascal compiler in the game who interprets your commands. So the syntax is pascal (a programming language). This means you could also write something like this:
  1  addItem('Ir'+'on', 10+63*10);
which is equivalent to:
  1  addItem('Iron', 64*10);