Não sei quanto é 200kkk, vou supor que o valor é 2 000 000 000
Experimenta ai o código pra ver se funciona
function onUse(cid, item, fromPosition, itemEx, toPosition)
local cidMoney = getPlayerMoney(cid)
local vaultmoney = getItemAttribute(itemEx.uid, "money")
if (getItemAttribute(itemEx.uid, "money") == 0) then
doSetItemAttribute(itemEx.uid, "money", math.min(cidMoney, 2000000000))
doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "Voce depositou "..math.min(cidMoney, 2000000000).." dolares!")
if getPlayerMoney(cid) >= 1000000 and getPlayerMoney(cid) < 10000000 then
item = doPlayerAddItem(cid, 7896, 1)
doItemSetAttribute(item, "money", math.min(cidMoney, 2000000000))
doPlayerRemoveItem(cid, itemEx, 1)
doRemoveItem(itemEx.uid, 1)
end
if getPlayerMoney(cid) >= 10000000 and getPlayerMoney(cid) < 100000000 then
item = doPlayerAddItem(cid, 7897, 1)
doItemSetAttribute(item, "money", math.min(cidMoney, 2000000000))
doPlayerRemoveItem(cid, itemEx, 1)
doRemoveItem(itemEx.uid, 1)
end
if getPlayerMoney(cid) >= 100000000 and getPlayerMoney(cid) <= 2000000000 then
item2 = doPlayerAddItem(cid, 7898, 1)
doItemSetAttribute(item2, "money", math.min(cidMoney, 2000000000))
doPlayerRemoveItem(cid, itemEx, 1)
doRemoveItem(itemEx.uid, 1)
end
doPlayerRemoveMoney(cid, math.min(cidMoney, 2000000000))
else
item2 = doPlayerAddItem(cid, 7895, 1)
doItemSetAttribute(item2, "money", 0)
doPlayerRemoveItem(cid, itemEx, 1)
doRemoveItem(itemEx.uid, 1)
doPlayerAddMoney(cid, math.min(vaultmoney, 2000000000))
end
return true
end