• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved Fire Walker Boots Repair By a Ruby help!

You will need to make an action script for the small enchanted ruby (item id 7760) that executes transform item on itemid 9934 (Worn fireboots)

add to actions.xml
Code:
<action itemid="7760" script="tools/fireboots.lua"/>

fireboots.lua

Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
    if itemEx.itemid == 9934 then
  doTransformItem(itemEx.uid, 9933)
   else
     return FALSE
   end
   return TRUE
end
 
Back
Top