Forrest logo
back to the openttd tool

openttd:tldr:4d735

openttd: Start with a custom configuration file.
$ openttd -c ${filename}
try on your machine

The command "openttd -c ${filename}" is used to run the OpenTTD game with a specific configuration file. Let's break it down:

  • "openttd" is the executable file for running the OpenTTD game.
  • "-c" is a command-line option that tells OpenTTD to use a specific configuration file.
  • "${filename}" is a placeholder for the actual filename. You would replace "${filename}" with the name of the configuration file you want to use.

By specifying a configuration file, you can customize various settings and options for the OpenTTD game before launching it. The configuration file contains parameters such as screen resolution, starting year, game speed, available industries, etc. So, by using this command, you can launch OpenTTD with a specific set of configurations.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the openttd tool