23 lines
452 B
Bash
23 lines
452 B
Bash
#!/bin/bash
|
|
# Minecraft Control-Scripts Config-File
|
|
|
|
# (please remember that there are no spaces allowed around the =-Sign
|
|
# in the config-lines)
|
|
|
|
# Minecraft-Dir & JAR
|
|
|
|
# Directory where minecraft is in
|
|
mc_root="/home/pi/Zway-Bot"
|
|
|
|
# Root of Control-Scripts
|
|
control_root="$mc_root/control"
|
|
|
|
|
|
# MC-Server-Jar (will be executed in mc_root)
|
|
mc_jar="$mc_root/Zway-Bot.exe"
|
|
|
|
# MC-Server Start-Command
|
|
mc_cmd="mono $mc_jar"
|
|
|
|
# Screen
|
|
screen_name="Zway-Bot" |