• 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!

Levers

koz

Gm Death
Joined
Feb 2, 2009
Messages
77
Reaction score
0
How do i make a lever teleport you to a different place on the map or make it so you have to buy items by using it?
 
for runes potions check here
http://otland.net/f132/leverscript-done-but-little-help-24269/#post244165

teleport script

PHP:
function onUse(cid, item, frompos, item2, topos)
        if item.itemid == 1946 then
	   doTeleportThing(cid, {x = 1262, y = 767, z = 7, stackpos = 1}, TRUE)
doTransformItem(item.uid, item.itemid + 1)
	elseif item.itemid == 1945 then
	   doTransformItem(item.uid, item.itemid - 1)

	end
   return 1
end
 
Back
Top