Console Colors

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

  1. Offline

    np98765 43210 Moderator BukkitDev Staff

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    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

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Hm, compare the startup scripts.
  3. Offline

    np98765 43210 Moderator BukkitDev Staff

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    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.
  4. Offline

    np98765 43210 Moderator BukkitDev Staff

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    ... Yet I can't figure out why. What part of the startup is causing this? :confused:
  5. Offline

    pyraetos

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    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.
  6. Offline

    np98765 43210 Moderator BukkitDev Staff

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Yep, RemoteToolKit. Automatic server restarts and stuff.

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

    Omnitv

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Hey np, Welcome to the bukkit help. : D
    Are you talking about adding colours to your console?
    Maybe try @Bertware 's Bukkit GUI

Share This Page