Console Colors

Discussion in 'Bukkit Help' started by np98765, Aug 17, 2012.

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

    np98765

    Someone please explain this to me.

    I'm running two servers, a test server and a normal server. The test server has all the same plugins as the regular server, and the only real difference would be the main directory, I guess (although that's pretty similar, too).

    I get colors on the test server's console, but not on the regular server's console. Their both running the same version of CB.

    This makes no sense and I want my colors. :mad:
     
  2. Offline

    pyraetos

    Hm, compare the startup scripts.
     
  3. Offline

    np98765

    The server with colors:

    Code:
    #!/bin/bash
     
    DIRECTORY=$(cd "`dirname "$0"`" && pwd)
    (cd "$DIRECTORY"; java -Xmx1024M -Xms1024M -jar craftbukkit.jar)
    
    The server without:

    Code:
    #!/bin/bash
     
    DIRECTORY=$(cd "`dirname "$0"`" && pwd)
    (cd "$DIRECTORY"; java -Xmx30M -Xms30M -XX:MaxPermSize=40M -jar Minecraft_RKit.jar ${USER}:${PASS})
    
    You were right! I'm using Adminium (Remote ToolKit), so these are automatically generated based off of the config.

    ... Yet I can't figure out why. What part of the startup is causing this? :confused:

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 27, 2016
  4. Offline

    pyraetos

    Well, looks like you're running something called Minecraft_RKit.jar

    I'm guessing that application proceeds to start CB? I don't know how it works, but you get a standard console.
     
  5. Offline

    np98765

    Yep, RemoteToolKit. Automatic server restarts and stuff.

    I guess I'll talk to the developer about it; thanks. :)
     
  6. Offline

    Omnitv

    Hey np, Welcome to the bukkit help. : D
    Are you talking about adding colours to your console?
    Maybe try Bertware 's Bukkit GUI
     
Thread Status:
Not open for further replies.

Share This Page