worldedge

worldedge is a mod that teleports the player to the other side of the world when they reach the edge.

When the player walks past 30000 in any direction they will be teleported to the other side of the world as if they walked around the world.

Krock has made it so when you teleport to the other side you will be at ground height.

This mod was created by Amaz, modified by Krock And maintained by Don.



You can open the init.lua file and edit the top to make the world smaller.
Just change the 2 lines below. Please note that the newedge needs to be less then the edge. If they are the same then the player will get stuck in a teleport loop. If you want it smaller then change the 30000 and the 29995.

At the top of the file you will see these lines. Do not edit the first one. Change the numbers in the second and third lines.

local count = 0 --Do not change this
local edge = 30000 --sets the edge of map
local newedge = 29995 --sets the other side where player teleports to.


Here is an example of a map that is only 10000 blocks wide instead of 60000. (the number you see in the file is half of the width of the map).

local count = 0 --Do not change this
local edge = 5000 --sets the edge of map
local newedge = 4995 --sets the other side where player teleports to.