A lot of mistakes

Discussion in 'Bukkit Help' started by refreak, Sep 30, 2014.

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

    refreak

    Hello everyone. I am Russian, this may be errors in spelling.
    I am creating a server, and I came across this error, or rather a few mistakes.
    1. When you restart does not save the worlds of MultiWorld and SimpleWorld. Put plugin AutoSaveWorld, but it did not help.
    2. When you restart the game mode changes. I bet /gamemode 1, reboot to become /gamemode 0
    3. When you restart flies command / spawn...
    I ask your help. Please help.
     
  2. Offline

    LHammonds

    Make sure you shutdown the server properly.

    When I want to stop the server, I do these commands to make sure it is stopped cleanly:

    Code:
    save-all
    stop
    
    Each hour while the server is running, I do online backups by doing this:

    Code:
    say Backup started...
    save-off
    save-all
    
    I then do an rsync command to copy any changes to a backup location (I run it on Linux)
    Code:
    say Backup completed.
    save-on
    
    The above can be done manually or you can set it up to be scripted and run automatically using a scheduler. On Linux, it would be crontab. On Windows, it would be Task Scheduler.

    The gamemode does not change by default. You probably have a plugin installed that does that. I know Multiverse-Core has an option such as "gameMode: SURVIVAL" which is set each time you login so MultiWorld might have a similar setting.

    LHammonds
     
  3. Offline

    refreak

    Thank you. I will try.
     
Thread Status:
Not open for further replies.

Share This Page