• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Lottery Ticket Script

lol94

Loler
Joined
Dec 23, 2008
Messages
764
Reaction score
55
Location
Mexico
Hello Otland, i want the script of the lottery ticket :D

17:01 You see a lottery ticket.
It weighs 1.20 oz.
ItemID: [5957].

like 40% chance that i get the winner lotery ticket

thanks otland... i will rep++ anyone who helpme
 
data/actions/actions.xml
PHP:
<action itemid="5957" event="script" value="lottery_ticket.lua"/>

data/actions/scripts/lottery_ticket.lua
Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	local chance = math.random(0, 100)
	return chance < 40 and doTransformItem(item.uid, item.itemid - 1) and doSendMagicEffect(getThingPos(cid), CONST_ME_POFF) or chance > 40 and doTransformItem(item.uid, item.itemid + 1) and doCreatureSay(cid, "You have a winning lottery ticket!", TALKTYPE_ORANGE_1) and doSendMagicEffect(getThingPos(cid), CONST_ME_MAGIC_BLUE)
end
 
Back
Top