This wiki has been moved to https://github.com/SuperTux/wiki into the mediawiki branch.
Difference between revisions of "Console"
(update console activation to match 0.3) |
AnMasterBot (Talk | contribs) m (Robot: Cosmetic changes) |
||
Line 9: | Line 9: | ||
To do so, you will have to run supertux using the <tt>--console</tt> option. The key assigned to opening the console can be changed in the keyboard setup as soon it is activated. | To do so, you will have to run supertux using the <tt>--console</tt> option. The key assigned to opening the console can be changed in the keyboard setup as soon it is activated. | ||
− | To disable the console again you | + | To disable the console again you have to edit the SuperTux configuration file <tt>~/.supertux2/config</tt>. Change |
(console #t) | (console #t) | ||
back to | back to |
Revision as of 00:17, 9 October 2007
SuperTux 0.3.x: This text describes features that can be found in SuperTux 0.3.0 or later
The Console is a panel normally hidden from view. Its usage is twofold:
- It displays informational, warning and error messages that occur during gameplay, alerting players of things like low diskspace, broken levels, ...
- It helps debug the engine and test levels by allowing direct execution of Squirrel script commands (see Scripting reference)
The Console pops into view for a short time whenever new messages are printed. To review old messages and enter commands, the console needs to be activated.
To do so, you will have to run supertux using the --console option. The key assigned to opening the console can be changed in the keyboard setup as soon it is activated.
To disable the console again you have to edit the SuperTux configuration file ~/.supertux2/config. Change
(console #t)
back to
(console #f)
Commands
Following is a list of useful scripts to run in the console:
quit() | quits SuperTux |
restart() | restarts the current level |
whereami() | prints Tux' coordinates |
debug_collrects(true) | shows a transparent hitbox image over badguys for debuging |
ghost() | lets Tux float around and through solid objects |
kill() | Kills Tux |
mortal() | reverts Tux back to normal |
grow() | Grows Tux into big Tux |
shrink() | Shrinks Tux into little Tux |
fire() | Gives Tux the fire addon |
ice() | Gives Tux the ice addon |
invincible() | Makes Tux invincible |
lifeup() | Gives Tux 100 more coins |
finish() | Finish the level |