sorry to bug you again, but every time i want to start it again i have all the steps you told me to do. do you know if there is a way that i can just click on "StartServer.sh" and it would start automatically.
server-ip=
server-port=25565
Hmm on a Mac you must need to specify an absolute path. Very strange. Anyway try edit your ServerStart.sh to this:We'll i fixed the fail to bind to port problem and no clicking on the monster start server does pretty much the same thing as the dire wolf one
#!/bin/bash
mydir="$(dirname $BASH_SOURCE)"
java -Xms2048m -Xmx2048m -XX:PermSize=256m -jar "$mydir/FTBServer-1.6.4-965.jar"
In a Mac you do not need the full path, just the file in he the directory you are I just like any other OS make sure the .sh is executable and that it is in the minecrqft folder with the server.jar and that he server.jar is spelled right in the .sh file.Hmm on a Mac you must need to specify an absolute path. Very strange. Anyway try edit your ServerStart.sh to this:
Code:#!/bin/bash mydir="$(dirname $BASH_SOURCE)" java -Xms2048m -Xmx2048m -XX:PermSize=256m -jar "$mydir/FTBServer-1.6.4-965.jar"
This script should work in 100% of cases, no matter where you move your server folder or start the script from.
It works by using bash's BASH_SOURCE variable which returns the absolute path of the ServerStart.sh file.