-
Content Count
849 -
Joined
-
Last visited
-
Days Won
57
Reputation Activity
-
Serlite got a reaction from donreyadano in 🏆 [0.08 BTC] Around the Globe: Egypt🔺
Well, this one's a more interesting challenge than usual. And it didn't cost me too much either!
09.00
Bet: 57,030,519,081
placed by Serlite on 04/05/2020
Wagered
3.50000000 Multiplier
1.01x Profit
0.03570000 97.96
Bet: 57,031,202,860
placed by Serlite on 04/05/2020
Wagered
3.50000000 Multiplier
20.00x Profit
66.50000000 96.06
Bet: 57,031,203,361
placed by Serlite on 04/05/2020
Wagered
3.50000000 Multiplier
20.00x Profit
66.50000000 As for the scripts, well - the first part's kind of an obvious one, but the second part is a mishmash of some of my old ones! As usual, paste them into the Code tab of dicebot's Programmer mode, and update any amounts/currencies you need.
Part 1:
chance = 98 nextbet = 3.5 bethigh = false currency = "Doge" function dobet() if lastBet.Roll == 09.00 then ching() stop() end end Part 2:
chance = 4.95 nextbet = 3.5 bethigh = true currency = "Doge" local targetStreak = 2 local lastFourthDigit = -1 function dobet() local currentFourthDigit = round((lastBet.Roll * 100) % 10) if win and lastFourthDigit == currentFourthDigit and currentstreak >= targetStreak then ching() stop() end lastFourthDigit = currentFourthDigit end function round(x) return math.floor(x + 0.5) end
-
Serlite got a reaction from EpicGord in 🏆 [0.08 BTC] Around the Globe: Italy 🍝
Well...this was a slog, but not too hard. Just...slow.
Group I
04.28
Bet: 56,420,755,607
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 82.40
Bet: 56,421,497,937
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 Group II
57.41
Bet: 56,418,720,983
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 14.75
Bet: 56,419,545,135
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 Group III
87.80
Bet: 56,421,258,111
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 08.78
Bet: 56,426,136,438
placed by Serlite on 28/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 As for the script - same as usual, just a rollhunt script. Delete numbers as you hit them, and delete groups as you get pairs in them!
chance = 98 nextbet = 3.4 bethigh = false currency = "Doge" numbersToHunt = { -- Group 1 60.30, 03.06, 07.40, 04.70, 82.40, 04.28, -- Group 2 15.19, 91.51, 14.75, 57.41, 15.20, 02.51, 13.86, 68.31, -- Group 3 99.20, 02.99, 55.00, 00.55, 87.80, 08.78 } function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
Serlite got a reaction from 26Rola in 🏆 [0.08 BTC] Around the Globe: Italy 🍝
Well...this was a slog, but not too hard. Just...slow.
Group I
04.28
Bet: 56,420,755,607
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 82.40
Bet: 56,421,497,937
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 Group II
57.41
Bet: 56,418,720,983
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 14.75
Bet: 56,419,545,135
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 Group III
87.80
Bet: 56,421,258,111
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 08.78
Bet: 56,426,136,438
placed by Serlite on 28/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 As for the script - same as usual, just a rollhunt script. Delete numbers as you hit them, and delete groups as you get pairs in them!
chance = 98 nextbet = 3.4 bethigh = false currency = "Doge" numbersToHunt = { -- Group 1 60.30, 03.06, 07.40, 04.70, 82.40, 04.28, -- Group 2 15.19, 91.51, 14.75, 57.41, 15.20, 02.51, 13.86, 68.31, -- Group 3 99.20, 02.99, 55.00, 00.55, 87.80, 08.78 } function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
Serlite reacted to Bojana in 🏆 [0.08 BTC] Around the Globe: Italy 🍝
@Serlite, your words of support mean so much to me 😂😅
-
Serlite got a reaction from Bojana in 🏆 [0.08 BTC] Around the Globe: Italy 🍝
Well...this was a slog, but not too hard. Just...slow.
Group I
04.28
Bet: 56,420,755,607
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 82.40
Bet: 56,421,497,937
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 Group II
57.41
Bet: 56,418,720,983
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 14.75
Bet: 56,419,545,135
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 Group III
87.80
Bet: 56,421,258,111
placed by Serlite on 27/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 08.78
Bet: 56,426,136,438
placed by Serlite on 28/04/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 As for the script - same as usual, just a rollhunt script. Delete numbers as you hit them, and delete groups as you get pairs in them!
chance = 98 nextbet = 3.4 bethigh = false currency = "Doge" numbersToHunt = { -- Group 1 60.30, 03.06, 07.40, 04.70, 82.40, 04.28, -- Group 2 15.19, 91.51, 14.75, 57.41, 15.20, 02.51, 13.86, 68.31, -- Group 3 99.20, 02.99, 55.00, 00.55, 87.80, 08.78 } function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
Serlite got a reaction from larisa321 in 🏆 [0.08 BTC] Around the Globe: Germany 🍻
Not the biggest fan of rollhunts with fixed multipliers...but 2x is low enough, so I'll bite!
15.51
Bet: 55,841,376,883
placed by Serlite on 20/04/2020
Wagered
3.50000000 Multiplier
2.00x Profit
3.50000000 38.83
Bet: 55,844,789,522
placed by Serlite on 21/04/2020
Wagered
3.50000000 Multiplier
2.00x Profit
3.50000000 03.30
Bet: 55,848,011,235
placed by Serlite on 21/04/2020
Wagered
3.50000000 Multiplier
2.00x Profit
3.50000000 As for the script...typical rollhunt script, just delete numbers as you hit them.
chance = 49.5 nextbet = 3.5 bethigh = false currency = "Doge" numbersToHunt = {03.30, 07.70, 15.51, 27.72, 38.83} function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
Serlite got a reaction from Alberliza in 🏆 [0.08 BTC] Around the Globe: Germany 🍻
Not the biggest fan of rollhunts with fixed multipliers...but 2x is low enough, so I'll bite!
15.51
Bet: 55,841,376,883
placed by Serlite on 20/04/2020
Wagered
3.50000000 Multiplier
2.00x Profit
3.50000000 38.83
Bet: 55,844,789,522
placed by Serlite on 21/04/2020
Wagered
3.50000000 Multiplier
2.00x Profit
3.50000000 03.30
Bet: 55,848,011,235
placed by Serlite on 21/04/2020
Wagered
3.50000000 Multiplier
2.00x Profit
3.50000000 As for the script...typical rollhunt script, just delete numbers as you hit them.
chance = 49.5 nextbet = 3.5 bethigh = false currency = "Doge" numbersToHunt = {03.30, 07.70, 15.51, 27.72, 38.83} function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
Serlite got a reaction from EpicGord in 🏆 [0.08 BTC] Around the Globe: Germany 🍻
Not the biggest fan of rollhunts with fixed multipliers...but 2x is low enough, so I'll bite!
15.51
Bet: 55,841,376,883
placed by Serlite on 20/04/2020
Wagered
3.50000000 Multiplier
2.00x Profit
3.50000000 38.83
Bet: 55,844,789,522
placed by Serlite on 21/04/2020
Wagered
3.50000000 Multiplier
2.00x Profit
3.50000000 03.30
Bet: 55,848,011,235
placed by Serlite on 21/04/2020
Wagered
3.50000000 Multiplier
2.00x Profit
3.50000000 As for the script...typical rollhunt script, just delete numbers as you hit them.
chance = 49.5 nextbet = 3.5 bethigh = false currency = "Doge" numbersToHunt = {03.30, 07.70, 15.51, 27.72, 38.83} function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
Serlite got a reaction from paddyspub in 🏆 [0.1 BTC] Around the Globe: Easter Island 🐇
Another plain and simple rollhunt, my favourite kind of challenge!
Group II:
10.00
Bet: 55,244,789,885
placed by Serlite on 13/04/2020
Wagered
3.50000000 Multiplier
1.01x Profit
0.03570000 17.22
Bet: 55,245,295,075
placed by Serlite on 13/04/2020
Wagered
3.50000000 Multiplier
1.01x Profit
0.03570000 19.95
Bet: 55,247,255,872
placed by Serlite on 13/04/2020
Wagered
3.50000000 Multiplier
1.01x Profit
0.03570000 As for the script...well, it's the usual rollhunt script. Just delete numbers as you go...and don't forget to stop once you finish one group!
chance = 98 nextbet = 3.5 bethigh = false currency = "Doge" numbersToHunt = {5.04, 20.75, 35.12, 10.00, 17.22, 19.95, 1.00, 13.04, 20.00} function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
Serlite got a reaction from donreyadano in 🏆 [0.1 BTC] Around the Globe: Easter Island 🐇
Another plain and simple rollhunt, my favourite kind of challenge!
Group II:
10.00
Bet: 55,244,789,885
placed by Serlite on 13/04/2020
Wagered
3.50000000 Multiplier
1.01x Profit
0.03570000 17.22
Bet: 55,245,295,075
placed by Serlite on 13/04/2020
Wagered
3.50000000 Multiplier
1.01x Profit
0.03570000 19.95
Bet: 55,247,255,872
placed by Serlite on 13/04/2020
Wagered
3.50000000 Multiplier
1.01x Profit
0.03570000 As for the script...well, it's the usual rollhunt script. Just delete numbers as you go...and don't forget to stop once you finish one group!
chance = 98 nextbet = 3.5 bethigh = false currency = "Doge" numbersToHunt = {5.04, 20.75, 35.12, 10.00, 17.22, 19.95, 1.00, 13.04, 20.00} function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
Serlite got a reaction from jomaka in 🏆 [0.1 BTC] Around the Globe: Easter Island 🐇
Another plain and simple rollhunt, my favourite kind of challenge!
Group II:
10.00
Bet: 55,244,789,885
placed by Serlite on 13/04/2020
Wagered
3.50000000 Multiplier
1.01x Profit
0.03570000 17.22
Bet: 55,245,295,075
placed by Serlite on 13/04/2020
Wagered
3.50000000 Multiplier
1.01x Profit
0.03570000 19.95
Bet: 55,247,255,872
placed by Serlite on 13/04/2020
Wagered
3.50000000 Multiplier
1.01x Profit
0.03570000 As for the script...well, it's the usual rollhunt script. Just delete numbers as you go...and don't forget to stop once you finish one group!
chance = 98 nextbet = 3.5 bethigh = false currency = "Doge" numbersToHunt = {5.04, 20.75, 35.12, 10.00, 17.22, 19.95, 1.00, 13.04, 20.00} function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
Serlite got a reaction from bitboy26 in 🏆 [0.08 BTC] Around the Globe: Switzerland 🧀
This forum challenge took me about 10k sats to hit...which is basically right on target, so yay for math!
Bet: 54,624,882,647
placed by Serlite on 06/04/2020
Wagered
3.60000000 Multiplier
12.00x Profit
39.60000000 Bet: 54,624,883,077
placed by Serlite on 06/04/2020
Wagered
3.60000000 Multiplier
12.00x Profit
39.60000000 12.91
Bet: 54,628,511,407
placed by Serlite on 06/04/2020
Wagered
3.60000000 Multiplier
1.01x Profit
0.03672000 As for the scripts, they're both pretty simple (but still nice to save your eyes while hunting). As usual, paste them into the Code tab of dicebot, and update currency/amount as needed!
chance = 8.25 nextbet = 3.6 bethigh = true currency = "Doge" function dobet() if win then print(lastBet.Id) end if currentstreak >= 2 then ching() stop() end end chance = 98 nextbet = 3.6 bethigh = false currency = "Doge" function dobet() if lastBet.Roll == 12.91 then ching() stop() end end
-
Serlite got a reaction from petikemas in 🥇 [0.2 BTC] Piggy Bank 💰 | VIP
Sooo...I almost completely messed up here, when I hunted the challenge with the wrong base bet. I didn't notice until I hit a number...but luckily after I fixed my bet, I hit another number soon after! So I was rather incredibly lucky this time around. Whew!
91.91
Bet: 54,629,174,770
placed by Serlite on 06/04/2020
Wagered
0.01680000 Multiplier
1.01x Profit
0.00017136 And for anyone looking for a rollhunt script, just in case you don't have one of my old ones lying around:
chance = 98 nextbet = 0.0168 bethigh = false currency = "Ltc" numbersToHunt = {10.10, 19.19, 28.28, 37.37, 46.46, 55.55, 64.64, 73.73, 82.82, 91.91} function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
Serlite got a reaction from pedrojmelo in 🥇 [0.2 BTC] Piggy Bank 💰 | VIP
Sooo...I almost completely messed up here, when I hunted the challenge with the wrong base bet. I didn't notice until I hit a number...but luckily after I fixed my bet, I hit another number soon after! So I was rather incredibly lucky this time around. Whew!
91.91
Bet: 54,629,174,770
placed by Serlite on 06/04/2020
Wagered
0.01680000 Multiplier
1.01x Profit
0.00017136 And for anyone looking for a rollhunt script, just in case you don't have one of my old ones lying around:
chance = 98 nextbet = 0.0168 bethigh = false currency = "Ltc" numbersToHunt = {10.10, 19.19, 28.28, 37.37, 46.46, 55.55, 64.64, 73.73, 82.82, 91.91} function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
Serlite got a reaction from pedrojmelo in 🏆 [0.08 BTC] Around the Globe: Switzerland 🧀
This forum challenge took me about 10k sats to hit...which is basically right on target, so yay for math!
Bet: 54,624,882,647
placed by Serlite on 06/04/2020
Wagered
3.60000000 Multiplier
12.00x Profit
39.60000000 Bet: 54,624,883,077
placed by Serlite on 06/04/2020
Wagered
3.60000000 Multiplier
12.00x Profit
39.60000000 12.91
Bet: 54,628,511,407
placed by Serlite on 06/04/2020
Wagered
3.60000000 Multiplier
1.01x Profit
0.03672000 As for the scripts, they're both pretty simple (but still nice to save your eyes while hunting). As usual, paste them into the Code tab of dicebot, and update currency/amount as needed!
chance = 8.25 nextbet = 3.6 bethigh = true currency = "Doge" function dobet() if win then print(lastBet.Id) end if currentstreak >= 2 then ching() stop() end end chance = 98 nextbet = 3.6 bethigh = false currency = "Doge" function dobet() if lastBet.Roll == 12.91 then ching() stop() end end
-
Serlite got a reaction from EpicGord in 🏆 [0.08 BTC] Around the Globe: Indonesia 🎑
Yay, just a normal, straightforward rollhunt this time. Easy to calculate expected cost, low variance...my favourite kind of challenge!
5.00
Bet: 54,030,689,841
placed by Serlite on 30/03/2020
Wagered
0.00016000 Multiplier
1.01x Profit
0.00000163 19.45
Bet: 54,033,954,570
placed by Serlite on 30/03/2020
Wagered
0.00016000 Multiplier
1.01x Profit
0.00000163 26.70
Bet: 54,041,080,720
placed by Serlite on 30/03/2020
Wagered
0.00016000 Multiplier
1.01x Profit
0.00000163 13.90
Bet: 54,042,007,462
placed by Serlite on 30/03/2020
Wagered
0.00016000 Multiplier
1.01x Profit
0.00000163 17.00
Bet: 54,044,191,359
placed by Serlite on 30/03/2020
Wagered
0.00016000 Multiplier
1.01x Profit
0.00000163 As for the dicebot script...it's a familiar one, but just in case you haven't got it yet:
chance = 98 nextbet = 0.00016000 bethigh = false currency = "Ltc" numbersToHunt = {13.90, 26.70, 5.00, 17.00, 19.45} function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
Serlite got a reaction from pedrojmelo in 🥇 [0.2 BTC] Golden Dice 🎲
Well...I don't have the balance to actually compete with the high rollers here, so here's all I got, haha:
Bet: 54,029,402,037
placed by Serlite on 30/03/2020
Wagered
0.01630000 Multiplier
2.00x Profit
0.01630000 Bet: 54,029,403,316
placed by Serlite on 30/03/2020
Wagered
0.01630000 Multiplier
2.00x Profit
0.01630000 If anybody actually has enough balance and wants to risk their balance for this kind of hunt though...here's my usual streak hunt dicebot script! Remember, you have to stop it yourself though, so keep an ear out for that "ching" or it'll keep running until you run out of balance.
chance = 49.5 nextbet = 0.01630000 bethigh = true currency = "Ltc" local bestStreak = 0 local streakNumbers = {} function dobet() if win then table.insert(streakNumbers, lastBet.Id) if bestStreak < currentstreak then ching() print("New best streak: "..tostring(currentstreak)) printSet(streakNumbers) bestStreak = currentstreak end else streakNumbers = {} end end function printSet(set) local printedString = "" for key, value in pairs(set) do printedString = printedString..tostring(value).." " end print(printedString) end
-
Serlite got a reaction from bitboy26 in 🏆 [0.08 BTC] Around the Globe: Indonesia 🎑
Yay, just a normal, straightforward rollhunt this time. Easy to calculate expected cost, low variance...my favourite kind of challenge!
5.00
Bet: 54,030,689,841
placed by Serlite on 30/03/2020
Wagered
0.00016000 Multiplier
1.01x Profit
0.00000163 19.45
Bet: 54,033,954,570
placed by Serlite on 30/03/2020
Wagered
0.00016000 Multiplier
1.01x Profit
0.00000163 26.70
Bet: 54,041,080,720
placed by Serlite on 30/03/2020
Wagered
0.00016000 Multiplier
1.01x Profit
0.00000163 13.90
Bet: 54,042,007,462
placed by Serlite on 30/03/2020
Wagered
0.00016000 Multiplier
1.01x Profit
0.00000163 17.00
Bet: 54,044,191,359
placed by Serlite on 30/03/2020
Wagered
0.00016000 Multiplier
1.01x Profit
0.00000163 As for the dicebot script...it's a familiar one, but just in case you haven't got it yet:
chance = 98 nextbet = 0.00016000 bethigh = false currency = "Ltc" numbersToHunt = {13.90, 26.70, 5.00, 17.00, 19.45} function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
Serlite got a reaction from hamato in 🏆 [0.08 BTC] Walk of Fame: Blind Boy Grunt 🎤
Hooray, this one was more doable than last week's...but still really quite costly for me. Lost all my Doge hunting this! Would probably not recommend if you don't want to risk/waste a lot of balance...I probably wouldn't do it again, given the choice.
Bet: 49,843,722,112
placed by Serlite on 12/02/2020
Wagered
0.03600000 Multiplier
77.95x Profit
2.77029900 Bet: 49,843,722,894
placed by Serlite on 12/02/2020
Wagered
0.03600000 Multiplier
77.95x Profit
2.77029900 20.16
Bet: 49,846,367,522
placed by Serlite on 12/02/2020
Wagered
0.03600000 Multiplier
1.01x Profit
0.00036720 As for the script, it's in two parts. As usual, paste the script into the Code tab of dicebot, and update currency/amount as needed. Part 1:
chance = 1.27 nextbet = 0.036 bethigh = true currency = "Xrp" function dobet() if win then print(lastBet.Id) end if currentstreak >= 2 then ching() stop() end end Part 2:
chance = 98 nextbet = 0.036 bethigh = false currency = "Xrp" function dobet() if lastBet.Roll == 20.16 then print(lastBet.Id) ching() stop() end end
-
Serlite got a reaction from Bojana in 🏆 [0.08 BTC] Around the Globe: Brazil ⚽
I was a bit nervous about doing this on 10x...but hey, variance didn't hurt me that badly, so yay! And then I hunted the 18.22 forever. That cost a lot.
00.50
Bet: 52,835,740,916
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
10.00x Profit
0.00135000 05.50
Bet: 52,836,309,940
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
10.00x Profit
0.00135000 00.55
Bet: 52,836,669,090
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
10.00x Profit
0.00135000 18.22
Bet: 52,845,375,104
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
1.01x Profit
0.00000153 As for the script...there's no script from me this week! At least, not from me. Why? Because someone already posted my script on the first page - which is great! The more people reuse my scripts, the easier it is for everyone to get a script when they need one. Mission accomplished!
-
Serlite got a reaction from williamsh in 🥇 [0.2 BTC] Battle of Kings 👑
Oh man...you guys really know how to make a cheapskate forum challenge hunter like me panic. This could've gone soooo bad due to variance...
Bet: 52,833,748,535
placed by Serlite on 16/03/2020
Wagered
0.01250000 Multiplier
10.00x Profit
0.11250000
-
Serlite got a reaction from EpicGord in 🏆 [0.08 BTC] Around the Globe: Brazil ⚽
I was a bit nervous about doing this on 10x...but hey, variance didn't hurt me that badly, so yay! And then I hunted the 18.22 forever. That cost a lot.
00.50
Bet: 52,835,740,916
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
10.00x Profit
0.00135000 05.50
Bet: 52,836,309,940
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
10.00x Profit
0.00135000 00.55
Bet: 52,836,669,090
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
10.00x Profit
0.00135000 18.22
Bet: 52,845,375,104
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
1.01x Profit
0.00000153 As for the script...there's no script from me this week! At least, not from me. Why? Because someone already posted my script on the first page - which is great! The more people reuse my scripts, the easier it is for everyone to get a script when they need one. Mission accomplished!
-
Serlite got a reaction from jamyr in 🏆 [0.08 BTC] Around the Globe: Brazil ⚽
I was a bit nervous about doing this on 10x...but hey, variance didn't hurt me that badly, so yay! And then I hunted the 18.22 forever. That cost a lot.
00.50
Bet: 52,835,740,916
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
10.00x Profit
0.00135000 05.50
Bet: 52,836,309,940
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
10.00x Profit
0.00135000 00.55
Bet: 52,836,669,090
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
10.00x Profit
0.00135000 18.22
Bet: 52,845,375,104
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
1.01x Profit
0.00000153 As for the script...there's no script from me this week! At least, not from me. Why? Because someone already posted my script on the first page - which is great! The more people reuse my scripts, the easier it is for everyone to get a script when they need one. Mission accomplished!
-
Serlite got a reaction from Dogderan in 🏆 [0.08 BTC] Around the Globe: Brazil ⚽
I was a bit nervous about doing this on 10x...but hey, variance didn't hurt me that badly, so yay! And then I hunted the 18.22 forever. That cost a lot.
00.50
Bet: 52,835,740,916
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
10.00x Profit
0.00135000 05.50
Bet: 52,836,309,940
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
10.00x Profit
0.00135000 00.55
Bet: 52,836,669,090
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
10.00x Profit
0.00135000 18.22
Bet: 52,845,375,104
placed by Serlite on 16/03/2020
Wagered
0.00015000 Multiplier
1.01x Profit
0.00000153 As for the script...there's no script from me this week! At least, not from me. Why? Because someone already posted my script on the first page - which is great! The more people reuse my scripts, the easier it is for everyone to get a script when they need one. Mission accomplished!
-
Serlite got a reaction from AqChrysaetos in 🏆 [0.08 BTC] Walk of Fame: The Knight's Tale 🃏
That wasn't too bad! I lost...hmm, 3-4 XRP hunting this, which was pretty close to the expected cost for this challenge.
20.08
Bet: 51,294,149,697
placed by Serlite on 25/02/2020
Wagered
0.03500000 Multiplier
1.01x Profit
0.00035700 96.78
Bet: 51,298,585,547
placed by Serlite on 25/02/2020
Wagered
0.03500000 Multiplier
20.00x Profit
0.66500000 95.18
Bet: 51,298,585,870
placed by Serlite on 25/02/2020
Wagered
0.03500000 Multiplier
20.00x Profit
0.66500000
As for the script, the first part's a basic rollhunt - the second part is a bit more interesting, though. As usual, paste it into the Code tab dicebot while it's in Programmer mode. Good luck!
chance = 98 nextbet = 0.035 bethigh = false currency = "Xrp" function dobet() if lastBet.Roll == 20.08 then ching() stop() end end chance=4.95 nextbet=0.035 bethigh=true currency = "Xrp" local targetPatternStreak = 2 local patternStreak = 0 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 win and isValidPattern(digit1, digit2, digit3, digit4) then print(tostring(lastBet.Roll)) print(tostring(lastBet.Id)) patternStreak = patternStreak + 1 else patternStreak = 0 end if patternStreak >= targetPatternStreak then ching() stop() end end function round(x) return math.floor(x + 0.5) end function isValidPattern(digit1, digit2, digit3, digit4) if digit1 == 8 or digit2 == 8 or digit3 == 8 or digit4 == 8 then return true end return false end