talvez esta sirva!, nao estou mas em scripts so estou ajudando por humildade, faz um ano que nao fasso script
=[ agora to curtindo mas mapas e dising!
function getPlayerMoney(cid)
gold = getPlayerItemCount(cid,9971)
money = gold ingot
local items = {
["axe"] = {cash=150, id=8926, amount=1},
["sword"] = {cash=150, id=7403, amount=1},
["club"] = {cash=150, id=7423, amount=1},
["staff"] = {cash=150, id=8922, amount=1},
["book"] = {cash=150, id=8921, amount=1},
["axe dois"] = {cash=80, id=7453, amount=1},
["sword dois"] = {cash=80, id=7418, amount=1},
["club dois"] = {cash=80, id=7392, amount=1},
["staff dois"] = {cash=80, id=6534, amount=1},
["book dois"] = {cash=80, id=8904, amount=1},
["crossbow dois"] = {cash=150, id=8851, amount=1},
["crossbow"] = {cash=80, id=8853, amount=1}
}
---------End Config ---------
function onSay(cid, words, param)
bitem = items[param]
if (bitem ~= nil) then
if getPlayerMoney(cid) >= bitem.cash then
doPlayerAddItem(cid,bitem.id,bitem.amount)
doPlayerRemoveMoney(cid,bitem.cash)
else
doPlayerSendCancel(cid,"Desculpe, Dinheiro Insuficiente")
end
else
doPlayerSendCancel(cid, "Esse Item não é vendido.")
end
return 1
end