GuiValladao
New Member
- Joined
- Feb 8, 2015
- Messages
- 7
- Reaction score
- 0
Hi, I put my server in no-pvo but the magic wall and wild growth runes don't disappear when I walk over them. Someone could help me?
<movevent type="StepIn" itemid="YOUR_MWALL_ID_HERE" event="script" value="remove_non_pvp_walls.lua"/>
<movevent type="StepIn" itemid="YOUR_GROWTH_ID_HERE" event="script" value="remove_non_pvp_walls.lua"/>
function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor)
doRemoveItem(item.uid)
return true
end
<movevent event="StepIn" actionid="1497" script="others/removewall.lua"/>
<movevent event="StepIn" actionid="1499" script="others/removewall.lua"/>
function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor)
doRemoveItem(item.uid)
return true
end