[HELP/UNSOLVED] How do I unload then load a world?

Discussion in 'Plugin Development' started by InfiniteMinecraft, Jul 25, 2012.

Thread Status:
Not open for further replies.
  1. I know you can set a world to not auto-save, and I know that you can then unload the world and it won't save anything. I can turn off auto-save and unload the world, my question is after this, how do I reload the world?
     
  2. Offline

    javoris767

    Bukkit.getServer().unloadWorld(arg0, arg1);
    Maybe this for unload.Idk about load :/
     
  3. I already know how to unload, I just need help loading.
     
  4. Try something like this:
    Code:java
    1. WorldCreator wc = new WorldCreator("world_name");
    2. getServer().createWorld(wc);
     
  5. Offline

    ionre

    I guess this is solved, so could you tag it as solved? Helps others to find what they want (Just saying...)
     
Thread Status:
Not open for further replies.

Share This Page