@klein no ar tenta esse
function onSay(cid, words, param)
local diamond = 2145
local price = 10
local unique = false
local boost = 0
local config = nil
if getPlayerItemCount(cid, diamond) < price then
return doPlayerSendTextMessage(cid, 20, "Você precisa de ".. price .." Diamonds para comprar Vip 30 Dias.") and true
end
if getPlayerItemCount(cid, diamond) > price then
doPlayerAddPremiumDays(cid,30)
doPlayerRemoveItem(cid, diamond, price)
doSendAnimatedText(getThingPos(cid), "VIP!", math.random(1, 255))
doPlayerSendTextMessage(cid, 20, "Você comprou VIP 30 Dias!")
return true
end
end