Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

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

  • 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...

Yes, the client-side world name is always MpServer.

You'll have to get the server side world name.

  • 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 !

  • 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 ...

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.

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.