Jump to content
Marija

🎂​ [0.06 BTC] Time for Champagne! [17th MAY]

Recommended Posts

image.png

  Time for Champagne! 🥂

Ends: 18/05/19 @ Midnight (12am) GMT 
  

Spoiler

Prepare your crystal glasses, since it's time for Champagne! Don't let the bubbles distract you while hunting for palindromes! Don't get too tipsy, since the Birthday celebration lasts one more day!

All players who achieve the challenge in the following 24 hours will get a share in the 0.06 BTC daily prize pool!

 

 

Requirement

  • Win any of the following pairs:
    - 06.60 and 60.06
    - 16.61 and 61.16
    - 26.62 and 62.26
    - 36.63 and 63.36
    - 46.64 and 64.46
    - 56.65 and 65.56
    - 76.67 and 67.76
    - 86.68 and 68.86
    - 96.69 and 69.96
  • Bets do not have to be consecutive, and they can be caught in any order you want.
  • Minimum bet:
    • bitcoin 0.00000100
    • bitcoin cash 0.00002100
    • ethereum 0.00003700
    • litecoin 0.00008800
    • dogecoin 2.60000000
  • 1 valid entry per household.
  • Bets must have been made after the commencement of this promotion.
  • Do not change your linked account during the whole event.
  • 10+ forum post count.
  • Haven't broken any General Giveaways Rules!

Prize Pool(s)

  • Daily prize pool based on the number of individual players: 0.06 BTC

How to Enter

  1. Respond to this topic, and link your bet IDs using the link function in the text editor. Feel free to edit your posts as you catch the new bets. 

(Paste your bet id, then highlight and click on the link bet button, as shown in image below)
image.png

Share this post


Link to post
Share on other sites

Yaaay, finally another interesting one to try out! This took about how long I expected, bit over 3k rolls.

68.86

placed by Serlite on 16/05/2019

Wagered

2.60000000doge.svg

Multiplier

1.01x

Profit

0.02652000doge.svg

86.68

placed by Serlite on 16/05/2019

Wagered

2.60000000doge.svg

Multiplier

1.01x

Profit

0.02652000doge.svg

And now, the script. Yeah, you could do this with just the rollhunt script and some manual tracking...but hey, why not fully automate it! As usual, paste it into the Code tab of Programmer Mode in dicebot, and update the currency/bet as needed:

chance=98
nextbet=2.6
bethigh=false
currency = "Doge"

numbersToHunt = {06.60, 60.06, 16.61, 61.16, 26.62, 62.26, 36.63, 63.36, 46.64, 64.46, 56.65, 65.56, 76.67, 67.76, 86.68, 68.86, 96.69, 69.96}
numbersHit = {}

function dobet()
	-- break down roll number into comparable components
	local digit4 = round((lastBet.Roll * 100) % 10)
	local digit3 = round(((lastBet.Roll * 100) % 100 - digit4) / 10)
	local digit2 = round(((lastBet.Roll * 100) % 1000 - digit3 * 10 - digit4) / 100)
	local digit1 = round(((lastBet.Roll * 100) - digit2 * 100 - digit3 * 10 - digit4) / 1000)

	if containedInSet(lastBet.Roll, numbersToHunt) then
		local fullRollNumber = tostring(digit1)..tostring(digit2).."."..tostring(digit3)..tostring(digit4)
		local invertedRollNumber = tostring(digit2)..tostring(digit1).."."..tostring(digit4)..tostring(digit3)
		if numbersHit[invertedRollNumber] == nil then
			numbersHit[fullRollNumber] = lastBet.Id
			print("Hit "..invertedRollNumber..", "..tostring(lastBet.Id))
		else
			print(numbersHit[invertedRollNumber])
			print(lastBet.Id)
			stop()
		end
	end
end

function round(x)
	return math.floor(x + 0.5)
end

function containedInSet(x, set)
	for key, value in pairs(set) do
		if x == value then
			return true
		end
	end
	return false
end

 

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.

×