Solved Console not showing up

Discussion in 'Bukkit Help' started by xDilly, Jul 21, 2012.

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

    xDilly

    Lets start off first that I'm new to creating servers and are kinda a noob with them, lol.

    Anyway, I'm running on a Hamachi server with only 1 bukkit plugin installed. The problem is that I can't get the console to show up if I launch the server with bukkit.
    [​IMG]
    It only shows up if I launch the server without bukkit.
    [​IMG]
    I'm kinda confused on what to do here but any help would be appreciated.

    *Btw, I'm sorry if this was kinda hard to understand because I'm super tired.... and stupid

    :p*


    Additional information that might help:

    OS: Windows 8 Release Preview 64 Bit
    Java Version: 7
    RAM: 8 GB
    CPU: Intel i3-2120 @ 3.30GHz
     
  2. Offline

    c0mp

    That's because the Minecraft_Server is an .exe file, whereas the craftbukkit-1.2.5-R4.0 is a .jar file. The .jar file needs to be run from the command line (cmd, in Windoze). The wiki has a startup tutorial that shows how to make a batch file to start the server, or you can open a command prompt and type the applicable java command.
     
  3. Offline

    jacklin213

    should be this code if your running 32 bit java 7
    USUALLY THIS ONE
    V
    Code:
    @ECHO OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    "%ProgramFiles(x86)%\Java\jre7\bin\java.exe" -Xmx1024M -Xms1024M -jar craftbukkit.jar
    PAUSE
    should be this code if your running 64 bit java 7

    Code:
    @ECHO OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    "%ProgramFiles%\Java\jre7\bin\java.exe" -Xmx1024M -Xms1024M -jar craftbukkit.jar
    PAUSE
    put this into notepad save it as Run.bat in your server folder (you dont need the minecraft_server.exe for craftbukkit)

    RENAME you craftbukkit(the version) to craftbukkit.jar
     
  4. Offline

    xDilly

    thanks man it worked ^_^
     
  5. Offline

    jacklin213

    np. go to thread tools and set this to solved thanks. If you need help on anything else feel free to pm me
     
Thread Status:
Not open for further replies.

Share This Page