-
Content Count
305 -
Joined
-
Last visited
-
Referrer
kiran232
Reputation Activity
-
EpicGord got a reaction from Genie in [$800] PD Weekly Heroes Wk3
Bet: 110,473,730,237
placed by EpicGord on 17/05/2022
Wagered
0.00000100 Multiplier
50.00x Profit
0.00004900
-
EpicGord got a reaction from WildMachines in [$800] The Greatest Minds: Judit Polgar
Bet: 104,714,790,948
placed by EpicGord on 24/01/2022
Wagered
0.00000089 Multiplier
50.00x Profit
0.00004361
Bet: 104,714,839,253
placed by EpicGord on 24/01/2022
Wagered
0.00000089 Multiplier
50.00x Profit
0.00004361
-
EpicGord got a reaction from Jasdin in [$800] The Greatest Minds: Mark Zuckerberg
Bet: 104,257,037,272
placed by EpicGord on 17/01/2022
Wagered
0.00000071 Multiplier
11.00x Profit
0.00000710
-
EpicGord got a reaction from WildMachines in [$800] The Greatest Minds: Mark Zuckerberg
Bet: 104,257,037,272
placed by EpicGord on 17/01/2022
Wagered
0.00000071 Multiplier
11.00x Profit
0.00000710
-
EpicGord got a reaction from WildMachines in [$800] The Greatest Minds: Terrence Tao🧮
Bet: 103,480,401,234
placed by EpicGord on 03/01/2022
Wagered
0.00000065 Multiplier
22.00x Profit
0.00001365
-
EpicGord got a reaction from WildMachines in 🎄 [$2000] Weekly Christmas Challenge 🎄
Bet: 102,719,968,325
placed by EpicGord on 20/12/2021
Wagered
0.00000065 Multiplier
25.00x Profit
0.00001560
Bet: 102,719,968,866
placed by EpicGord on 20/12/2021
Wagered
0.00000065 Multiplier
25.00x Profit
0.00001560
-
EpicGord got a reaction from WildMachines in 🔮🧙♀️[$1200] Halloween - Ursula Sontheil 🧙♀️🔮
Bet: 99,929,279,628
placed by EpicGord on 30/10/2021
Wagered
0.00000050 Multiplier
1.50x Profit
0.00000025
-
EpicGord got a reaction from Suizen in 🎤[$800]The Greatest Minds - Martin Luther King🎤
Bet: 97,931,130,773
placed by EpicGord on 29/09/2021
Wagered
0.00000071 Multiplier
33.00x Profit
0.00002272
-
EpicGord got a reaction from WildMachines in 🎤[$800]The Greatest Minds - Martin Luther King🎤
Bet: 97,931,130,773
placed by EpicGord on 29/09/2021
Wagered
0.00000071 Multiplier
33.00x Profit
0.00002272
-
EpicGord got a reaction from WildMachines in [$800] 📖 The Greatest Minds - Dante 📖
Bet: 96,820,353,140
placed by EpicGord on 07/09/2021
Wagered
0.00000764 Multiplier
6.00x Profit
0.00003820 Bet: 96,820,353,424
placed by EpicGord on 07/09/2021
Wagered
0.00000764 Multiplier
6.00x Profit
0.00003820
-
EpicGord got a reaction from WildMachines in [$800]📐The Greatest Minds: Archimedes📐
00.02
Bet: 96,182,671,840
placed by EpicGord on 8/24/2021
Wagered
0.00000061 Multiplier
15.00x Profit
0.00000854
-
EpicGord got a reaction from Itsuka06 in Does exercise increase sex stamina?
I think that while exercise can increase your physical ability to continue the rhythmical action required to last longer sexually, it doesn’t ensure a hard erection nor will it ensure your ability to stay in control of ejaculation and i guess these problems happen because men and women aren’t taught a relevant start-to-end procedure which explains the mechanics of sex. With this advanced sex education it can become easy to increase your sexual stamina.So guys what your thoughts on this
-
EpicGord reacted to Serlite in 🏆 [2.5 ETH] Around the Globe: Madagascar 🐒
Well, this was an interesting one to script. Not too hard, either! Wish the multiplier could have been lower, though...
90.98
Bet: 64,166,950,824
placed by Serlite on 21/07/2020
Wagered
2.74000000 Multiplier
8.00x Profit
19.18885020 89.01
Bet: 64,166,951,379
placed by Serlite on 21/07/2020
Wagered
2.74000000 Multiplier
8.00x Profit
19.18885020 92.33
Bet: 64,166,951,925
placed by Serlite on 21/07/2020
Wagered
2.74000000 Multiplier
8.00x Profit
19.18885020 As for the script, here you go! A bit more complicated than usual, which was a nice change. Update the currency and amount as needed, then paste it into the Code tab of dicebot in Programmer Mode:
chance = 12.3700 nextbet = 2.74 bethigh = true currency = "Doge" local targetStreakLength = 3 local targetPatternMatches = 2 local lastPatternMatches = {} 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 then print(lastBet.id) -- Record whether bet matched pattern if isValidPattern(digit1, digit2, digit3, digit4) then table.insert(lastPatternMatches, 1, 1) else table.insert(lastPatternMatches, 1, 0) end -- Trim set so old bets are removed from memory local setLength = table.getn(lastPatternMatches) if setLength >= targetStreakLength then table.remove(lastPatternMatches) end else lastPatternMatches = {} end if sumOfSet(lastPatternMatches) >= targetPatternMatches and currentstreak >= targetStreakLength 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 function sumOfSet(set) local sum = 0 for key, value in pairs(set) do sum = sum + value end return sum end
-
EpicGord reacted to Serlite in 🏆 [4 ETH] Around the Globe: Serbia 📯
This one was nice and easy - I expect there'll be lots of entries for this one!
96.31
Bet: 59,239,547,405
placed by Serlite on 25/05/2020
Wagered
3.50000000 Multiplier
6.00x Profit
17.50000000 93.41
Bet: 59,239,650,338
placed by Serlite on 25/05/2020
Wagered
3.50000000 Multiplier
6.00x Profit
17.50000000 6.93
Bet: 59,239,708,368
placed by Serlite on 25/05/2020
Wagered
3.50000000 Multiplier
6.00x Profit
17.50000000 It won't take a lot of rolls to hit...but just in case you want to save your eyes from screening numbers manually, here's a digit-hunting script you can use. Don't forget to change bethigh to false for rolling under! As usual, update the currency/multiplier as needed:
chance = 16.50 nextbet = 3.5 bethigh = true currency = "Doge" local targetDigit = 3 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)) ching() stop() end end function round(x) return math.floor(x + 0.5) end function isValidPattern(digit1, digit2, digit3, digit4) if digit1 == targetDigit or digit2 == targetDigit or digit3 == targetDigit or digit4 == targetDigit then return true end return false end
-
EpicGord reacted to Serlite in 🎉 [4.5 ETH] The Seventh Bday Celebration 🎊
Not too complicated of a challenge...but I'm okay with simple ones!
77.77
Bet: 58,437,960,105
placed by Serlite on 18/05/2020
Wagered
3.50000000 Multiplier
1.01x Profit
0.03570000 4 hits in a row:
Bet: 58,438,407,703
placed by Serlite on 18/05/2020
Wagered
3.50000000 Multiplier
7.00x Profit
21.00493500 Bet: 58,438,408,972
placed by Serlite on 18/05/2020
Wagered
3.50000000 Multiplier
7.00x Profit
21.00493500 Bet: 58,438,410,279
placed by Serlite on 18/05/2020
Wagered
3.50000000 Multiplier
7.00x Profit
21.00493500 Bet: 58,438,411,172
placed by Serlite on 18/05/2020
Wagered
3.50000000 Multiplier
7.00x Profit
21.00493500 As for the scripts...well, they're super basic and probably everywhere by now, but here we go again:
Part 1:
chance = 98 nextbet = 3.5 bethigh = false currency = "Doge" function dobet() if lastBet.Roll == 77.77 then ching() stop() end end Part 2:
chance = 14.14 nextbet = 3.5 bethigh = true currency = "Doge" function dobet() if win then print(lastBet.Id) end if currentstreak >= 4 then ching() stop() end end
-
EpicGord reacted to Serlite in 🏆 [0.08 BTC] Around the Globe: China 🎏
This hunt took basically the expected number of rolls and cost...but that was still a lot of rolls! Ah well, at least I finished.
88.50
Bet: 57,705,785,057
placed by Serlite on 11/05/2020
Wagered
3.50000000 Multiplier
1.01x Profit
0.03570000 3 wins at 8.55x:
Bet: 57,716,727,430
placed by Serlite on 12/05/2020
Wagered
3.50000000 Multiplier
8.55x Profit
26.42227000 Bet: 57,716,728,073
placed by Serlite on 12/05/2020
Wagered
3.50000000 Multiplier
8.55x Profit
26.42227000 Bet: 57,716,728,910
placed by Serlite on 12/05/2020
Wagered
3.50000000 Multiplier
8.55x Profit
26.42227000 As for the scripts...well, nothing really interesting here. Hunting a roll number, hunting a streak number...still, if you haven't already got those scripts, here you are! As usual, change currency/amount as needed, and paste it into the Code tab of dicebot in Programmer mode.
Part 1:
chance = 98 nextbet = 3.5 bethigh = false currency = "Doge" function dobet() if lastBet.Roll == 88.50 then ching() stop() end end Part 2:
chance = 11.58 nextbet = 3.5 bethigh = false currency = "Doge" function dobet() if currentstreak >= 3 then ching() stop() end end
-
EpicGord reacted to Serlite 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
-
EpicGord reacted to Serlite 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
-
EpicGord got a reaction from nolep in Can you get daily and continuous profits?
It's very difficult and required huge amount of self control and luck, when you are making continues profit for few days then it tempts you to bet huge and chances are you would lose.
So it's Require control on your bets and money management.
Also you should be able to stop in time and withdraw, also there is no guarantee that it will work to make small profit daily and you can bust all your balance trying for it.
-
EpicGord reacted to Serlite 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
-
EpicGord got a reaction from Mahdirakib in Have you ever played with script?
I mostly play using scripts because it's fun to try different strategies and test them while it's really hard to keep track of using manaul betting.
Also bot runs in background and you don't have to look on screen continuesly as you can set stop condition, when your desired target is achieved.
Well playing manually can be fun and exciting when betting big amounts but when you are trying strategies which requires time and calculations then scripts really make things easier.
Apart from that scripts are also very handy in hunting challenges which otherwise can be insanely difficult to do manually.
-
EpicGord reacted to Serlite 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
-
EpicGord got a reaction from VrOdaN in Does exercise increase sex stamina?
I think that while exercise can increase your physical ability to continue the rhythmical action required to last longer sexually, it doesn’t ensure a hard erection nor will it ensure your ability to stay in control of ejaculation and i guess these problems happen because men and women aren’t taught a relevant start-to-end procedure which explains the mechanics of sex. With this advanced sex education it can become easy to increase your sexual stamina.So guys what your thoughts on this
-
EpicGord got a reaction from VrOdaN in Best music videos of all time?
Unkle, "Rabbit in Your Headlights" featuring Thom Yorke from Radiohead gives me goosebumps, especially the last scene. Why? Because it speaks of our crazy society, it tells us to stop the madness and defeat the fools.
The youtube clip was ordinary so here's a link from Vimeo.
http://vimeo.com/9572603
For something more fun and uplifting I'd go for Jane's Addiction, "Been Caught Stealing", because it's stupid and bloody funny, making me smile and laugh. It would have cost fuckall compared to most video's on the market so has plenty of bang for buck, it's a cheap classic.
-
EpicGord reacted to Serlite 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!