server help please

Discussion in 'Bukkit Help' started by FloodzTxBB, Oct 22, 2011.

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

    FloodzTxBB

    i run a server and i was wondering how do i get the server to save automatically without a save plugins. sucha s in some servers it says in pink letters [server]level saving prepare for a little lag
    then it says [server]done saving catching up
     
  2. Offline

    ImminentFate

    they all use plugins to do auto saves
     
  3. Offline

    FloodzTxBB

    no such as the nerd servers their no plugins someone said theirs was a jar of their server.
    it looks like this-[server]saving world data.expect lag for a short while [server]save complete

    the [server] messages in game are in this pink type of color.

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

    c0mp

    If you're running linux, you can start the server in a screen session:
    Code:
    screen -dmS minecraft java -jar CraftBukkit.jar
    Then use screen to pipe commands into the console:
    Code:
    screen -x minecraft -X stuff "`printf "say Saving all worlds, hold on to your butts.\r"`"
    And then:
    Code:
    screen -x minecraft -X stuff "`printf "save-all\r"`"
    The only drawback is that if there's something already in the console (IE, in the middle of manually typing a console command) and the script starts running, it just blindly executes whatever happens to already be in there, which is usually OK, but can sometimes be disastrous, so if you set it as a cron job, try to keep the console clear when it runs. ;)

    If you're running Windows, I don't personally know of a way to do it, not to say it can't be done though.
     
  5. Offline

    FloodzTxBB

    oh i use windows but thanks anyways
     
  6. Offline

    c0mp

    Perhaps it's time to do something about that. ;)
     
  7. Offline

    FloodzTxBB

    is Linux much better? im not familiar with Linux.
     
  8. Join my teamspeak3 server for "Server Outage Chat"

    TS3: 76.118.210.107
     
  9. Offline

    Nathan C

    Linux bash script..
     
  10. Offline

    FloodzTxBB

    do you know what im talking about with the pink letter save thing on a sever?
     
  11. thats called a "server" broadcast message. It comes when any command/saying is typed/processed through the console. This happens when a plugin accesses the server console and runs a command.
     
  12. Offline

    FloodzTxBB

    yea but it does auto saves and backups like over a certain period of time not actually typing it in to do acommand for a plugin.

    heres an image of what it should look like
    http://imgur.com/p2ZND

    anyone know how to get whats on that image about the saving into my server?

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

    Diamondo25

    That's just the 'say' command. In linux it's easy to do a save cronjob, while in windows it will be hard/not possible to interact with consoles.
     
Thread Status:
Not open for further replies.

Share This Page