Jump to content
  • Home
  • Files
  • Docs
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Minecraft Forge
  • General Discussion
  • Cross world teleporting is it possible?
The update for 1.13 is being worked on - please be patient. (Updated 02/19/19)
Sign in to follow this  
Followers 0
frank_2018

Cross world teleporting is it possible?

Started by frank_2018, February 11

2 posts in this topic

frank_2018    0

frank_2018

frank_2018    0

  • Tree Puncher
  • frank_2018
  • Members
  • 0
  • 27 posts
  • Report post
Posted February 11

I have created many worlds in minecraft, some are full ocean, some are full sand, some are full iced, and some are full forest of oak, some have very astonishing views, some have very fantastic idea of farming because of its plain plains but with so much plains biomes. Its sad if evrytime I can focus on one world, the others are forgotten, But I still need those maps  that has so many setup naturally thats Not even exist on the new/other one.

Now it came into my heart not to destroy/delete most of it instead created a damn impossible question:

 

1. is it possible to teleport across to another created world?

2. is there any mods out there that can do this feature "teleport across into another created world?

3. or is there any command to teleport between two or more worlds?

4. If NONE of the 3 above, is there any modders can do/make a mod that will do this things?

Share this post


Link to post
Share on other sites

MFMods    8

MFMods

MFMods    8

  • Stone Miner
  • MFMods
  • Members
  • 8
  • 53 posts
  • Report post
Posted February 11

there are couple of mods that add overworld-like dimensions (and portals or commands to get to them). pick one from curseforge, there are a few. then, enter, exit dimension, exit game, copy the dimension directory from your one world directory into this latest directory and you'll have your old worlds as dimensions in the new world.

 

bonus mission: make use of hard links (or directory junctions depending on your OS) to link instead of copy. then, changes you make when one world is loaded will be visible when you load the other world.

 

most important thing: BACKUP YOUR STUFF BEFORE STARTING! you have been warned.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  
Followers 0
Go To Topic Listing General Discussion

  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • Krevik
      [1.13.2] Registries limits?

      By Krevik · Posted 7 minutes ago

      BlockBase and ItemBase are used to register block and items easier, the code is easier to read, than vanilla one - aren't some conventions pointing that the code should be easy to read? Without them I would have to call Block.Properties.create, every time I create new Block. The code is pretty long then, so I created some more simple constructor.   They're all registred in RegistryHelper.
        @SubscribeEvent public static void registerBlocks(final RegistryEvent.Register<Block> event){ final IForgeRegistry<Block> registry = event.getRegistry(); for(Block block: KBlocks.blockRegistryList){ registry.register(block); } } @SubscribeEvent public static void registerItems(final RegistryEvent.Register<Item> event){ final IForgeRegistry<Item> registry = event.getRegistry(); for(ItemBlock itemBlock:KBlocks.itemBlocksRegistryList){ final Block block = itemBlock.getBlock(); final ResourceLocation registryName = Preconditions.checkNotNull(block.getRegistryName(), "Block %s has null registry name", block); ItemBlock itemBlock1 = (ItemBlock) new ItemBlock(block,new Item.Properties().group(itemBlock.getGroup())).setRegistryName(registryName); registry.register(itemBlock1); } for(Item item: KItems.itemsToRegister){ registry.register(item); } registry.register(new ItemBlock(KBlocks.KATHARIAN_PORTAL,new Item.Properties().group(KathairisItemGroups.kathairis_building_blocks)).setRegistryName(KBlocks.KATHARIAN_PORTAL.getRegistryName().toString())); } Yes, register method are being called, cause as I said most of blocks works, just some of them are skipped. Even if I try to register them manually, they're not succesfully registred
    • FlufffyDragon
      Has it become more tedious to mod in the latest updates?

      By FlufffyDragon · Posted 7 minutes ago

      No I meant minecraft may have made it more tedious.   Anyways thanks for clearing something up both of you. It's been a while and I've heard a few things from a few people, some wrong some right. Can't wait to actually start coding mods.
    • DavidM
      [1.13.2] Schedule Code to be Ran Later

      By DavidM · Posted 23 minutes ago

      Thanks.
    • DavidM
      Has it become more tedious to mod in the latest updates?

      By DavidM · Posted 24 minutes ago

      Developers don't update their libraries to make them "more tedious to use". New updates change many things, and due to this, people need to rewrite their mod, thus the complaining. Take the most recent 1.13.2 update for example. Some people complain that it "breaks" everything, making them having to rewrite everything; however, I'd say that the 1.13.2 update made everything a lot easier due to the code cleanup and rewrote.   So yeah, do update to the latest version. It is easier to work with than older versions (and older versions aren't supported on this forum).
    • V0idWa1k3r
      [1.13.2] Schedule Code to be Ran Later

      By V0idWa1k3r · Posted 27 minutes ago

      Is your TE ITickable? If is is then you can simply do these things on the first tick(have a boolean or something).  Otherwise you might be able to do it in TileEntity#setWorld, as far as I can tell it is called after the NBT was loaded. Just make sure you are on the server.
  • Topics

    • Krevik
      2
      [1.13.2] Registries limits?

      By Krevik
      Started 12 hours ago

    • FlufffyDragon
      3
      Has it become more tedious to mod in the latest updates?

      By FlufffyDragon
      Started 1 hour ago

    • DavidM
      2
      [1.13.2] Schedule Code to be Ran Later

      By DavidM
      Started 36 minutes ago

    • DavidM
      1
      [1.13.2] Detect Block Updates

      By DavidM
      Started 1 hour ago

    • ButterAleks
      1
      Need help making custom bone-meal in Minecraft 1.12.2

      By ButterAleks
      Started 1 hour ago

  • Who's Online (See full list)

    • matieusz
    • DavidM
    • V0idWa1k3r
    • desht
    • heyitsmenobodyy
    • Trhod177
    • Animefan8888
    • FlufffyDragon
    • Krevik
    • BatHeart
    • TheRam
    • coolsim
  • All Activity
  • Home
  • Minecraft Forge
  • General Discussion
  • Cross world teleporting is it possible?
  • Theme
  • Contact Us

Copyright © 2017 ForgeDevelopment LLC Powered by Invision Community