I want to load a world that I can then TP to. Example, I have a world folder in my main directory called "Game", How would I then load Game so I can use it?
Create a WorldCreator with the world's name and pass it to Bukkit.createWorld() (which returns the World object created in case you need to use it). Later, you can get it with Bukkit.getWorld(name). Code:java WorldCreator wc = new WorldCreator(/* world name */);World w = Bukkit.createWorld(wc);
Muod If the world already exists it just loads it. If the world is already loaded it just returns the world.