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

    • "I want to understand how complex mods with ASM transformation and coremods work, such as Xray or AntiXray. Why do they break when you simply rename packages? What features of their architecture make refactoring difficult? And what techniques are used to protect these mods? I am interested in technical aspects in order to better understand the bytecode and Forge loader system."
    • I can't figure out if you're looking for help trying to steal someone elses work, or cheat at the game....
    • Title: Why Is It So Hard to Rename and Restructure Mods Like Xray or AntiXray? 🤔 Post text: Hey everyone! I’ve been digging into Minecraft modding for a while and have one big question that I can’t figure out on my own. Maybe someone with more experience could help or give me some advice. Here’s the issue: When I take a “normal” Minecraft mod — for example, one that just adds some blocks or new items — I can easily change its structure, package names, or even rebrand it entirely. It’s straightforward. But as soon as I try this with cheat-type mods like XrayMod or AntiXray, everything falls apart. Even if I just rename the classes, refactor the packages, or hide its identity somehow, the mod either breaks or stops working properly. XrayMod in particular is proving to be a nightmare to modify without losing its core function. So my question is — why is this so much harder with cheat mods like Xray? Is there something fundamentally different about how they’re coded, loaded, or protected that prevents simple renaming or restructuring? And if so, how can I actually learn to understand someone else’s cheat mod enough to safely refactor it without breaking the core features? I’ve already been spending over two months trying to figure this out and haven’t gotten anywhere. It feels like there must be some trick or knowledge I’m missing. Would really appreciate any thoughts, tips, or references — maybe there are guides or techniques for understanding cheat-mod internals? Or if you’ve successfully “disguised” a cheat mod like Xray before, I’d love to hear how you did it. Thanks in advance for any help or discussion. ✌️
    • just started making cinamatic contect check it out on my channel or check out my facebook page    Humbug City Minecraft Youtube https://www.youtube.com/watch?v=v2N6OveKwno https://www.facebook.com/profile.php?id=61575866982337  
    • Where did you get the schematic? Source/Link? And do use an own modpack or a pre-configured from curseforge? If yes, which one On a later time, I can make some tests on my own - but I need the schematic and the modpack name
  • Topics

×
×
  • Create New...

Important Information

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