What do I do? [Run.bat not working]

Discussion in 'Bukkit Help' started by MichaelPaulBegley, Jul 9, 2013.

Thread Status:
Not open for further replies.
  1. Please help me, my batch file isn't working :( I don't know if this affects anything, but I'm using Windows 8, also, I had it working before, but I had to restart my computer, after I booted it back up, it was deleted. I made a new one and now this comes up, help please![​IMG]
     
  2. Offline

    the0dark0shadow

    Change the contents to
    Code:
    java -Xmx1024M -jar craftbukkit.jar -o true
    PAUSE
     
  3. Offline

    XDRosenheim

    Can't say exactly what it is but my guess is: It has something to do with the java.
     
  4. Offline

    KingRaven

    This same thing happened to me, and I use windows 8 as well. I have checked that my java downloaded correctly, and everything has been downloaded right. Is this problem possibly correlated with the fact that I use windows 8? Please help.
     
  5. Offline

    random_username

    Try this, Rename your .jar file to Craftbukkit . Then, if you have java in program files (x86), use:
    Code:
    ECHO OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    "C:\Program Files (x86)\Java\jre7\bin\java.exe" -Xmx1024M -Xms512M -jar craftbukkit.jar
    PAUSE
    If you have java in program files, use:
    Code:
    ECHO OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    "C:\Program Files\Java\jre7\bin\java.exe" -Xmx1024M -Xms512M -jar craftbukkit.jar
    PAUSE
     
Thread Status:
Not open for further replies.

Share This Page