Need help with server creation.

Discussion in 'Bukkit Discussion' started by Antman3121, Jul 17, 2011.

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

    Antman3121

    Hello, its always this problem when ever I start a new server with bukkit. What to add in the Run.bat file.. I have 64 bit so I know their is a different text I have to add.. If someone can please post what the text I have to add in it that would be awesome.
    Thank you.
     
  2. Offline

    Alzurana

    Should work for x86 and x64 systems:
    (runs the server in emulated x32 bit mode)

    Code:
    @ECHO OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    "C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xincgc -Xmx1G -jar craftbukkit-0.0.1-SNAPSHOT.jar
    PAUSE
    x64 only:
    (not tested it, bit if you have the x64 java jre on your computer it should work perfectly)
    Code:
    @ECHO OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    "C:\Program Files\Java\jre6\bin\java.exe" -Xincgc -Xmx1G -jar craftbukkit-0.0.1-SNAPSHOT.jar
    PAUSE
     
  3. Offline

    ImminentFate

Thread Status:
Not open for further replies.

Share This Page