Command line

From Minetest Wiki
Revision as of 09:15, 26 February 2014 by Rubenwardy (talk | contribs) (Add command parameters)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Common Commands

  • --address <value> - Address to connect to. ( = local game)
  • --gameid <value> - Set gameid ("--gameid list" prints available ones)
  • --map-dir <value> - Same as --world (deprecated)
  • --world <value> - Set world path (implies local game) ('list' lists all)
  • --worldname <value> - Set world by name (implies local game)
  • --name <value> - Set player name
  • --password <value> - Set password
  • --go - Disable main menu (skips and goes straight to game)
  • --config <value> - Load configuration from specified file
  • --port <value> - Set network port (UDP)
  • --server - Run dedicated server
  • --videomodes - Show available video modes
  • --help - Show allowed options

Debugging and Testing

  • --logfile <value> - Set logfile path ( = no logging)
  • --info - Print more information to console
  • --trace - Print enormous amounts of information to log and console
  • --verbose - Print even more information to console
  • --disable-unittests - Disable unit tests
  • --enable-unittests - Enable unit tests
  • --random-input - Enable random user input, for testing
  • --speedtests - Run speed tests

Running command line arguments

Linux

Open up the terminal

Simply type

./minetest --server --worldname MyWorld

Or you can make a shell (.sh) file.

Windows

The easiest way to run command line arguments on windows it to make a batch file. Open a plain text editor (for example Notepad, or Notepad++).

Enter your command line arguments in the following format:

minetest.exe --server --worldname MyWorld

And save to startserver.bat in the bin folder, next to minetext.exe (It doesn't need to be called startserver, that was just an example)

Now run it by double clicking your bat file.