Posted October 30, 201311 yr Hello everyone, I'm making a mod to save worlds, but I need to get the world name when the player disconnects. So I have overriden the ingamemenu, here's my button: case 100: par100GuiButton.enabled = false; this.mc.statFileWriter.readStat(StatList.leaveGameStat, 1); this.mc.theWorld.sendQuittingDisconnectingPacket(); String world = mc.theWorld.getWorldInfo().getWorldName(); this.mc.loadWorld((WorldClient)null); System.out.println("World Name: " + world); this.mc.displayGuiScreen(new GuiUpload()); break; The only problem is that the worldname is always equals to "MpServer", but I need the world name to zip the folder ... Thanks in advance
October 31, 201311 yr Author Ok so, in this file there's pretty much what I need, but it's not when the player exit the game, it load all the level list, then it sort it and finally it .get() the selected one...
October 31, 201311 yr Yes, the client-side world name is always MpServer. You'll have to get the server side world name.
October 31, 201311 yr Author Yes, the client-side world name is always MpServer. You'll have to get the server side world name. Oh yeah, I feel so stupid now >< For those who need the solution: mc.getIntegratedServer().getWorldName(); Thanks man !
October 31, 201311 yr Author Mmh sorry for the doublepost but, I have the world name but I need the Folder... I can't get it by this way and I can't just use the function "makeUsableName" because if the player has renamed the world it won't be the same folder ...
October 31, 201311 yr Hi Just a comment - mc.getIntegratedServer().getWorldName(); I reckon this will only work if the client and the server are running on the same machine. If a client uses this, it either won't work (or might crash). If you need it on the server only, it's easy MinecraftServer.getServer().getWorldName(); If on the client, the client should ask the server to send it via a custom packet 250 http://greyminecraftcoder.blogspot.com.au/2013/10/client-side-class-linkage-map.html http://greyminecraftcoder.blogspot.com.au/2013/10/server-side-class-linkage-map.html http://greyminecraftcoder.blogspot.com.au/2013/10/client-server-communication-using.html -TGG
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.