• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Teleports

Here are some other Teleportals you may not know about.

You can make anything a portal that can be placed on a tile, and be able to be walked on.

XML:
Standard Teleportal:
	<item id="1387" article="a" name="magic forcefield">
		<attribute key="description" value="You can see the other side through it."/>
		<attribute key="type" value="teleport"/>
	</item>

Mystic Flame Teleportal:
	<item id="1397" article="a" name="mystic flame">
		<attribute key="description" value="You feel drawn to the mesmerizing light."/>
		<attribute key="type" value="teleport"/>
	</item>

Carved Stone Tile Teleportal:
	<item id="3169" article="a" name="carved stone tile">
		<attribute key="type" value="teleport"/>
	</item>


Small Boat Teleportal:
	<item id="3588" article="a" name="small boat">
		<attribute key="type" value="teleport"/>
	</item>
	<item id="3589" article="a" name="small boat">
		<attribute key="type" value="teleport"/>
	</item>
	<item id="3593" article="a" name="small boat">
		<attribute key="type" value="teleport"/>
	</item>
	<item id="3594" article="a" name="small boat">
		<attribute key="type" value="teleport"/>
	</item>
	<item id="3595" article="a" name="small boat">
		<attribute key="type" value="teleport"/>
	</item>


Other Magic Forcefield Teleportal:
	<item id="5023" article="a" name="magic forcefield">
		<attribute key="type" value="teleport"/>
		<attribute key="description" value="You can see the other side trough it."/>
	</item>
	<item id="5024" article="a" name="magic forcefield">
		<attribute key="type" value="teleport"/>
		<attribute key="description" value="You can see the other side trough it."/>
	</item>


Turtle Teleportal:
	<item id="5756" article="a" name="turtle">
		<attribute key="type" value="teleport"/>
	</item>


Wooden Floor Teleportal:
	<item id="7719" name="wooden floor">
		<attribute key="type" value="teleport"/>
	</item>
	<item id="7941" name="wooden floor">
		<attribute key="type" value="teleport"/>
	</item>


Another Mystic Flame Teleportal:
	<item id="8058" article="a" name="mystic flame">
		<attribute key="description" value="You feel drawn to the mesmerizing light."/>
		<attribute key="type" value="teleport"/>
	</item>


Strange Whirl Teleportal:
	<item id="9110" article="a" name="strange whirl">
		<attribute key="type" value="teleport"/>
	</item>

Another Mystic Flame Teleportal:
	<item id="10013" article="a" name="mystic flame">
		<attribute key="description" value="You feel drawn to the mesmerizing light."/>
		<attribute key="type" value="teleport"/>
	</item>

Here are some I made:

Note: With these custom Teleportals you have to add them to data/actions/scripts/other/teleport.lua

XML:
Mystic Teleport Teleportal: This was made for 8.60+
	<item id="11796" article="a" name="Mystic Teleport">
		<attribute key="description" value="You think you see somthing on the other side."/>
		<attribute key="type" value="teleport"/>
	</item>
	<item id="11798" article="a" name="Mystic Teleport">
		<attribute key="description" value="You think you see somthing on the other side."/>
		<attribute key="type" value="teleport"/>
	</item>

Invisable Teleportal:
	<item id="4328" article="a" name="Invisable Teleportal">
		<attribute key="type" value="teleport"/>
	</item>

The Invisable Teleportal is for like Portal mazes.

OTmapeditor materials.xml

XML:
	<material name="Portals">
		<item fromid="1387"/>
		<item fromid="1397"/>
		<item fromid="3169"/>
		<item fromid="3588"/>
		<item fromid="3589"/>
		<item fromid="3593"/>
		<item fromid="3594"/>
		<item fromid="3595"/>
		<item fromid="5023"/>
		<item fromid="5024"/>
		<item fromid="5756"/>
		<item fromid="7719"/>
		<item fromid="7941"/>
		<item fromid="8058"/>
		<item fromid="9110"/>
		<item fromid="10013"/>
		<item fromid="11796"/> <!- Custom Teleportal -->
		<item fromid="11798"/> <!- Custom Teleportal -->
		<item fromid="4329"/> <!- Invisable Custom Teleportal -->
	</material>
 
Last edited:
A little extra tip if you having trouble to remember the position of the place of your "final destination" when you are going to type it in the teleport:
Place the teleporter on the tile of your "final destination", double click the teleporter and enter the position shown in the corner. Then you just have to drag the teleporter to its destination or just copy the teleporter and paste it where it should be. fast and simple and it works every time :)
 
Back
Top