Jump to content

getWorldName()


Knux14

Recommended Posts

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.