18 lines
340 B
Python
18 lines
340 B
Python
|
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"
|