Jump to content

Recommended Posts

Posted

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:

 

 

  Reveal hidden contents

 

 

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

Posted

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.

Posted

The only problem there is that EntityPlayer has no field called mcServer, or anything that is a MinecraftServer. Also, where are you getting ent? Because that should be an EnitityPlayerMP.

Posted

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.

Posted
  On 12/2/2012 at 10:03 PM, Salinor said:

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.

Posted

I'm still playing around it as well. I suspect your describing what I've been working through in terms of that function so I guess it is back to a similar style as your working on again :) Thanks :)

Posted

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 :)

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • My name is Richie Leo, and I’m sharing this message with a heart full of gratitude and hope. Several months ago, I was a victim of a devastating online scam that cost me a staggering $873,463. I was devastated, confused, and had nearly given up on ever recovering my money — until I came across Wizard George Cyber Service. Through their exceptional cyber recovery expertise and deep investigative skills, Wizard George and his team were able to trace, track, and recover the full amount that was stolen from me. Their professionalism, speed, and transparency truly amazed me. If you’re reading this and you’ve been scammed — whether it’s crypto, investment fraud, or any kind of online theft — don’t give up. I strongly recommend reaching out to Wizard George Cyber Service. 📧 Em: wizardgeorgecyberservice(AT) g m a l L. C o M
    • Alright, here is the log file https://mclo.gs/5eCwafV
    • Please read the FAQ (https://forums.minecraftforge.net/topic/125488-rules-and-frequently-asked-questions-faq/) and post log files as described there, using a site such as https://mclo.gs/ and post the link here.  
    • I tried updating the mods in my modpack which caused incompatibilities so i have tried to revert them back to their older versions i was using before. In the logs it doesnt show me any clear incompatibilities except for tfmg & entity texture features, but when i try to remove those it still doesn't work. I have tried removing the forge-client.toml file which was a suggestion i found on  a few other posts. This is the log file i get. [inline log removed] Any help would be appreciated. Thanks in advance
    • I don't use KubeJS, never even heard of it. But after doing what "Ugdhar" suggested earlier in this post with the "config/Mekanism/generator-storage.toml", I tried going into an individual save's serverconfig folder, and just deleting everything except the parcool folder (I have that mod installed.) Then, a bit of loading and temporary freezing later, seems to have worked. Even when quitting to menu and loading back in, or also when quitting to menu, exiting to desktop, and re-launching MC, choose a save and loading it.
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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