22 lines
437 B
Python
22 lines
437 B
Python
<<<<<<< HEAD
|
|
#!/usr/bin/python3
|
|
=======
|
|
#!/usr/bi/python3
|
|
>>>>>>> 079d2a0 (terminal intigration)
|
|
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"
|