is it possible to leave level-name= empty and on the Run.bat whenever you run it, it asks what server u want to load? im working on a LoZ:LttP Map and want to be able to work on it on multi-player if a buddie but also be able to just change to my brothers server when he wants to play mc.
i know that but like some way to have 1 file to be able to load both servers just not at same time cause that cant happen
this is what i have come up with so far Code: :main @ECHO OFF color 0a SET BINDIR=%~dp0 CD /D "%BINDIR%" echo. echo Which server would you like to run? set /p S="server: " if "%S%"=="1" goto A if "%S%"=="2" goto B if "%S%"=="exit" exit if not "%S%"=="S" goto Z cls :A @echo off color a SET BINDIR=%~dp0 CD /D "%BINDIR%" "%ProgramFiles%\Java\jre6\bin\java.exe" -Xmx1024M -Xms1024M -jar craftbukkit.jar PAUSE cls goto main :B @echo off color a SET BINDIR=%~dp0 CD /D "%BINDIR%" "%ProgramFiles%\Java\jre6\bin\java.exe" -Xmx1024M -Xms1024M -jar server.jar PAUSE cls goto main :Z @echo off color a echo sry this is not a valid server pause cls goto main
but the problem is that you need to have both craftbukkit files in the same folder and that doesnt work ill look into it more for u
https://docs.google.com/uc?id=0Bw0jX03NptKKeEU4V0FJNUpTTHM&export=download replace your server stuff into the folders and don rename the folders
kk i checked it out basicly its what im looking for now exiting twice looks like its gonna be fun but thats the cost of having to just load from 1 screen
http://minecraftbukkithelp.blogspot.co.nz/2012/07/cmd-bukkit-server-mainframe_16.html read information and follow steps