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

Blocking POT.

You need onStepIn script :/
Code:
	<movevent type="StepIn" itemid="2562" event="script" value="unwalkable.lua"/>
Code:
function onStepIn(cid, item, position, fromPosition)
	doTeleportThing(cid, fromPosition, true)
end
or mod
Code:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="Unwalkable" enabled="yes">
	<movevent type="StepIn" itemid="2562" event="buffer"><![CDATA[
		doTeleportThing(cid, fromPosition, true)
	]]></movevent>
</mod>
 
Back
Top