DonBatman.github.io/worldedge.html

138 lines
3.9 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Language" content="en-us" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="Mods for Minetest" />
<meta name="keywords" content="minetest, mod, mods, mymods, batman, donbatman, don" />
<meta name="author" content="Mymods website and mods are by Don and Max" />
<title>MyMods by Don and Max</title>
<link href="stylin.css" rel="stylesheet" type="text/css" />
</head>
<!--Body-->
<body>
<div id="container">
<!--Header-->
<div id="header">
<h1>MyMods for</h1>
</div>
<!--Menu-->
<div id="menu">
<a class="item" href="index.html">Home</a>
<a class="item" href="mymods.html">My Mods</a>
<a class="item" href="favmods.html">Mods I like</a>
<a class="item" href="server.html">My Server</a>
<!--Leftside-->
<div class="leftbox">
<h4>Top MyMods</h4>
<ul>
<li><a href="mydeck.html">mydeck</a></li>
<li><a href="mymillwork.html">mymillwork</a></li>
<li><a href="mycorners.html">mycorners</a></li>
<li><a href="mypaths.html">mypaths</a></li>
</ul>
</div>
<div class="leftbox">
<h4>Top Minetest Mods</h4>
<ul>
<li><a href="https://forum.minetest.net/viewtopic.php?id=4394">moretrees</a></li>
<li><a href="https://forum.minetest.net/viewtopic.php?id=509">moreblocks</a></li>
<li><a href="https://forum.minetest.net/viewtopic.php?id=2538">technic</a></li>
<li><a href="https://forum.minetest.net/viewtopic.php?t=628">mesecons</a></li>
<li><a href="https://forum.minetest.net/viewtopic.php?id=2155">pipeworks</a></li>
</ul>
</div>
</div>
<!--End "Menu" and left column -->
<!--Main Section-->
<div id="main">
<div class="bottomRight">
<div class="content">
<h2>worldedge</h2>
<p>
worldedge is a mod that teleports the player to the other side of the world when they reach the edge.
<br>
<br>
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.
<br>
<br>
Krock has made it so when you teleport to the other side you will be at ground height.
<br>
<br>
This mod was created by Amaz, modified by Krock And maintained by Don.
<br>
<br>
<ul>
<li>Minetest Forum Link - <a href="https://forum.minetest.net/viewtopic.php?f=9&t=10753">worldedge</a></li>
<li>Github Link - <a href="https://github.com/DonBatman/worldedge">Veiw Code</a></li>
<li>Direct Download - <a href="https://github.com/DonBatman/worldedge/archive/master.zip">worldedge.zip</a></li>
</ul>
<br>
<br>
You can open the init.lua file and edit the top to make the world smaller.
<br>
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.
<br>
<br>
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.
<br>
<br>
<div class=code>
local count = 0 --Do not change this
<br>
local edge = 30000 --sets the edge of map
<br>
local newedge = 29995 --sets the other side where player teleports to.
</div>
<br>
<br>
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).
<br>
<br>
<div class=code>
local count = 0 --Do not change this
<br>
local edge = 5000 --sets the edge of map
<br>
local newedge = 4995 --sets the other side where player teleports to.
</div>
<br>
<br>
</p>
</div>
</div>
</div>
<!--If you have many links, you can edit the margin-left in "#footer a" in the CSS-->
<div id="footer">
<a href="index.html">Home</a>
<a href="mymods.html">My Mods</a>
<a href="favmods.html">Mods I Like</a>
<a href="server.html">My Server</a>
</div>
</div>
</body>
</html>