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

Lua Sewer Gate Bug

Dyker

New Member
Joined
Sep 12, 2008
Messages
97
Reaction score
1
Help me, on my server the sewer gates doesn't works, when you click on it doesn't do anything!
 
might work with this script. not tested.

In actions.xml paste this anywhere..
Code:
<action itemid="430" script="Sewer_Gate.lua"/>

inside script/ make a .lua file named Sewer_Gate.lua
Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
if item.itemid == 430 then
	toPosition.z = toPosition.z-1
	doTeleportThing(cid, toPosition)
	doSendMagicEffect(pos, 10)

  else

  end
else
  return 0
end
return 1
end
 
Last edited:
Back
Top