Jump to content

Get the IP of the current server?


dude22072

Recommended Posts

Well, I see two ways.

 

First, ensuring you are connected to a server, you can use reflection to access serverName in Minecraft. But that's probably not the best idea.

 

The better way is to create a ConnectionHandler. Simply make a class:

public class ConnectionHandler implements IConnectionHandler

 

and register it in your @Init using:

NetworkRegistry.instance().registerConnectionHandler(new ConnectionHandler());

 

You can then use to these to methods in your connection handler to keep track of the current server:

@Override
public void connectionOpened(final NetHandler netClientHandler, final String server,
		final int port, final INetworkManager manager) {

}

@Override
public void connectionClosed(final INetworkManager manager) {

}

Link to comment
Share on other sites

So, could you give me an example of how to use this to add a stat (achievement) to the player?

(for an example) how would i use this to activate

player.addStat(ExtraAchievments.prot3ch, 1);

when the player connects to a server with the IP "173.68.68.76"?

 

Im asking because my mod (ExtraAchievements) is being added to a modpack I used to work on and i want to add an achievement for playing on the modpack's server.

Legend of Zelda Mod[updated September 20th to 3.1.1]

Extra Achievements(Minecraft 1.8!)[updated April 3rd to 2.3.0]

Fancy Cheeses[updated May 8th to 0.5.0]

Link to comment
Share on other sites

For that, I would use the playerLoggedIn method since it is fired server side when the connection is actually established. I haven't actually tried it, but this should work in your connection handler:

 

@Override
public void playerLoggedIn(final Player player, final NetHandler netHandler,
		final INetworkManager manager) {
	if(player instanceof EntityPlayerMP)
		((EntityPlayerMP)player).addStat(ExtraAchievments.prot3ch, 1);
}

 

EDIT: I forgot to mention, you're going to want to make sure that code is actually running on the intended server. Using this, someone could just create a local server and join to get the achievement. Perhaps an encrypted key in a configuration file?

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.