18 lines
359 B
Python
18 lines
359 B
Python
#!/usr/bin/python3
|
|
from os import path
|
|
|
|
path = (
|
|
path.dirname(__file__) + "/"
|
|
) # Path ist das Verzeichnis wo Terradash lokalisiert ist.
|
|
|
|
|
|
## Settings
|
|
LAUNCH_WORLD = "1"
|
|
MAX_PLAYERS = ""
|
|
PORT = ""
|
|
FORWARD_PORT = "y"
|
|
PASSWORD = ""
|
|
|
|
|
|
RUN_SERVER_COMMAND = "clear & mono --server --gc=sgen -O=all ./TerrariaServer.exe"
|
|
SERVER_PATH = path + "/TerrariaServer"
|