function onUse(cid, item, fromPosition, itemEx, toPosition)
local t = {
storage = 9467,
mount = 100 -- ID DA MOUNT QUE VAI GANHAR!
}
if getPlayerStorageValue(cid, t.storage) == -1 then
doPlayerAddMount(cid, t.mount)
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "Parabéns, você ganhou uma mount!")
doSendMagicEffect(getCreaturePosition(cid),29)
doPlayerSetStorageValue(cid, t.storage, 1)
else
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "Desculpe, Você ja ganhou a mount!")
doSendMagicEffect(getCreaturePosition(cid),2)
end
return TRUE
end