Server 1.1 to New Beta Server .jar Need Help

Discussion in 'Bukkit Help' started by ImSnowy, Mar 12, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    ImSnowy

    every time I put the new .jar file in my server folder and run the command window for my server i get this message

    "Unable to access jarfile CraftBukkit
    Press any key to continue"

    and here is my sever starter.bat

    Code:
    @ECHO OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    "C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xmx1024M -Xms1024M -jar CraftBukkit
    PAUSE
     
  2. try putting .jar on the end of CraftBukkit

    Code:
    @ECHO OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    "C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xmx1024M -Xms1024M -jar CraftBukkit.jar
    PAUSE
    Ensure the .jar file is also named CraftBukkit.jar
     
  3. Offline

    ImSnowy

    Says the exact same thing.
     
  4. Im guessing you actually have the CraftBukkit.jar file in the same folder as your serverstart.bat?

    This is my serverstart.bat file:
    Code:
    java -Xms1024M -Xmx2048M -jar craftbukkit-1.2.3-R0.2.jar
    Obviously my .jar file is called craftbukkit-1.2.3-R0.2.jar
     
Thread Status:
Not open for further replies.

Share This Page