toreriver.blogg.se

Nether coords converter
Nether coords converter






nether coords converter
  1. #NETHER COORDS CONVERTER MOD#
  2. #NETHER COORDS CONVERTER CODE#

Just for fun, I decided to test how close I could put portals and have them exit the portal I wanted.

nether coords converter

Here is the wiki for everything you ever wanted to know about nether portals. You can have portal sets very close to each other using this technique. Otherwise you can end up at someone else's portal.

#NETHER COORDS CONVERTER MOD#

Because Nether Coords is a client-side mod it works in both Singleplayer and Multiplayer and does not need to be installed on the server, just on the client. After you have the first working portal set, for the rest of the portals, you want to hand build both the overworld and the nether portal in their exact coordinates. Nether Coords is a Fabric client side mod that provides players with easier ways of determining relative coordinates in game. The build technique is a little different too. If you need several portals in close proximity, like a town with friends and everyone wants their own, stick to exact coordinates. There aren't as many caverns or large lava lakes so I can dig highways to my destinations. I generally build portals at the very top of the nether just below bedrock. Your destination will be the closest portal it finds. When you enter a portal, it searches anything within 128 blocks from the player in the destination world. If you don't have any other portals in the area, you can get away with some deviation from exact coordinates. Then you just have to verify that you can pass through the portals in both directions without creating a third portal in a weird location. Build a new nether portal in the coordinates you calculated at a higher or lower level. If the nether portal location is not good, destroy it. If you need exact position portals, one method is to build the overworld portal where you want it, do the math on the overworld coordinates, and enter the portal. If you are going from nether coordinates to overworld coordinates, multiply by 8. House would be (35,y,60 nether) and mansion would be (-403,y,1496 nether). Nether coordinates are overworld coordinates divided by 8.

#NETHER COORDS CONVERTER CODE#

We will say house is (280,y,485) and mansion is (-3225,y,11975) basic JS app with terrible design and even worse code clarity, used by random dudes who play Minecraft - MC-nether-coords-converter/index. The world that I’m in right now my cords are -115, 67, -152 in the overworld that equals to -15, 67, -19. ago 1 block in the nether equals to 8 blocks in the overworld. House chunk contains blocks (272,y,480) to (287,y,495) 1 Related Topics Action-adventure game 3 comments Best Add a Comment itskaiforeal 3 yr. Easy way to do this is multiply coordinates by 16. First thing that we need to do is convert chunk coordinates into block coordinates.








Nether coords converter