Bom, eu fiz um pequeno remake no código do @miguel223
Actions
-- Tony Araújo - OrochiElf --function onUse(cid, item) if getPlayerStorageValue(cid, 13812) < 100 then setPlayerStorageValue(cid, 13812, getPlayerStorageValue(cid, 13812) + 1) doPlayerSendTextMessage(cid, 22, "Você tem ".. getPlayerStorageValue(cid, 13812) .."x chances de acertar na loteria.") doSendMagicEffect(getThingPosition(cid), 12) doRemoveItem(item.uid, 1) else doPlayerSendTextMessage(cid, 22, "Voce ja apostou o maximo possivel para o sorteio!") end return trueend
GlobalEvents
-- Tony Araújo - OrochiElf --function onThink(cid, interval, lastExecution) if math.random(100) <= getPlayerStorageValue(cid, 13812) then doPlayerAddItem(cid, 2160, 100) doPlayerSendTextMessage(cid, 22, "Você acaba de ganhar na loteria, parabéns.") else doPlayerSendTextMessage(cid, 22, "Você não foi sorteado para o prémio, mais sorte da proxima vez.") end setPlayerStorageValue(cid, 13812, 0) return trueend