Eu Queria Se Possivel Se Alguem,Pode-se Modificar Esse Script De MoneyRune,Para O Dinheiro AO Invez De Ir Para Backpack,Ir Para O Banco
function onUse(cid, item, frompos, item2, topos)
local useless = {
[7635] = 100,
[7634] = 75,
[7636] = 30,
[2260] = 15,
}
local us = useless[item2.itemid]
if not us then return false end
local x,money = item2.type,item2.type*us
doRemoveItem(item2.uid)
doPlayerAddMoney(cid, money)
doSendAnimatedText(getCreaturePosition(cid), "$"..money.."", 210)
doSendMagicEffect(getCreaturePosition(cid), 7)
doPlayerSendTextMessage(cid, 19, "You collapsed a "..x.." frask {"..getItemNameById(item2.itemid).."} and received {"..money.." gold coins}.")
return true
end