Jump to content

Dimension not changing?


drinfernoo

Recommended Posts

I am working on a mod where I have an item that acts as a portal, and transports you between "Dimensions". In order to test it, I have an Item with this method:

 

 

 

@Override
public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player) {
	switch(world.provider.dimensionId) {
	case -1:
		player.travelToDimension(0);
		break;
	case 0:
		player.travelToDimension(-1);
		break;
	}
	return stack;
}

 

 

 

I was hoping that would bounce me back and forth between the Overworld and the Nether. However, whenever I use it, it makes a Nether Portal wherever I teleport to, and I'm automatically in it, so it sends me back. Is there a way to not make it make that portal? Or is that part of travelToDimension()? I don't really want the portals there, because I'm going to be making more Dimensions, and I want to only go between them with my Item.

 

The Item shows up, works, and everything is good, except for the teleporting :P

Link to comment
Share on other sites

I´ve got the same Problem. You have to use your own Teleporter Class, but i don´t know how to tell Minecraft wich Teleporter you want to use.

With ModLoader there was a method like

.usePortal(<ID>, <Teleporter>)

where you could give your Teleporter as a Parameter, but i don´t know how this works with Forge.

 

I hope this is understandable, my English is kinda bad.

 

Edit:

I think i´ve found a Solution:

 


player.mcServer.getConfigurationManager().transferPlayerToDimension(ent, Infiniverse.dimID, new IVTeleporterBasic(wserv));

 

I´ll try it now.

Link to comment
Share on other sites

My dimension isn't working right but I did find a function for the transfer:

 

transferToDimension that is in the EntityPlayer class... seems to get around those other issues I ran into trying to do it the other way.

 

Did you finally get it working?

 

I ended up using

mcServer.getConfigurationManager().transferEntityToWorld(player, dimensionID, currentWorld, newWorld, new Teleporter(newWorld));

But it gives me some wierd errors, as well as not teleporting me to the right place.

 

The Teleporter problem I can fix, the error it gives me is if I try to use it twice in a row, like to go back to the Dimension I just left, it crashes saying something about "Entity is already being tracked!", and I can't figure out what's wrong.

 

I can use the transferToDimension one, but it makes a Teleporter wherever I transport to, and then I just fall back into it, which isn't very helpful :P Thus, I am trying to specify a custom Teleporter so that it won't make the portal everytime I use my item.

Link to comment
Share on other sites

So I actually figured it out!

 

Here's my code, from the item I'm using as a "portal":

        @Override
public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player) {
	System.out.println(world.provider.getDimensionName());

	switch(world.provider.dimensionId) {
	case 1885:
		travelTime(0, player);
		break;
	case 0:
		travelTime(1885, player);
		break;
	}
	return stack;
}

public void travelTime(int dimensionID, Entity player) {
	if (!player.worldObj.isRemote && !player.isDead) {
		MinecraftServer mcServer = MinecraftServer.getServer();
		WorldServer newWorld = mcServer.worldServerForDimension(dimensionID);

		mcServer.getConfigurationManager().transferPlayerToDimension((EntityPlayerMP)player, dimensionID, new TimeTeleporter(newWorld));
	}
}

My TimeTeleporter() class is just an extension of Teleporter, but to use the same basic Teleporter as default, you should use this:

mcServer.worldServerForDimension(dimensionID).func_85176_s()

as the third parameter :)

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.