To liberando essa shit porque esses nubs fazem cada script grande que eu nao digo nada
shovel.lua
--- Shovel script by andre felipe reoganizado por Thunder Tigerfunction onUse(cid, item, frompos, item2, topos) pos = getPlayerPosition(cid) if item2.itemid == 0 then return 0 end if item2.itemid == 468 or item2.itemid == 481 or item2.itemid == 483 then doTransformItem(item2.uid,item2.itemid+1) doDecayItem(item2.uid) elseif item2.itemid == 231 then local rand = math.random(1,30) if rand < 6 then doSummonCreature('Scarab', topos) elseif rand == 6 then doSummonCreature('Crab', topos) elseif rand == 15 then doPlayerAddItem(cid, 2159, 1) else doSendMagicEffect(topos, 2) end else return 0 end return 1end