-
Content Count
232 -
Joined
-
Last visited
Reputation Activity
-
pfodo reacted to Serlite in [$800] The Greatest Minds: Edward Wilson
44.44
Bet: 103,994,790,749
placed by Serlite on 12/01/2022
Wagered
0.00021282 Multiplier
1.01x Profit
0.00000217 This one's not too tough, since we can choose any multiplier we want! And naturally that means I'd go for the lowest possible one. Here's a script!
chance = 98 nextbet = 0.00021282 bethigh = false currency = "Ltc" numbersToHunt = { 22.22, 33.33, 44.44, 55.55, 66.66 } 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
-
pfodo reacted to earnbtc in Problem about Bonus at Official
https://forum.primedice.com/topic/39751-🏆-800-the-greatest-minds-frida-kahlo-🖌/?do=findComment&comment=365939
-
pfodo reacted to Serlite in 🏆 [$800] The Greatest Minds: Mahatma Gandhi 🙏
96.87
Bet: 83,470,165,224
placed by Serlite on 10/03/2021
Wagered
0.00015336 Multiplier
6.00x Profit
0.00076680 6.52
Bet: 83,470,166,106
placed by Serlite on 10/03/2021
Wagered
0.00015336 Multiplier
6.00x Profit
0.00076680 This was a straightforward one to do. Just took a remix of a couple older scripts to make this one:
chance = 16.5000 nextbet = 0.00015336 bethigh = true currency = "Ltc" local targetStreak = 2 local targetDigit = 6 local currentStreak = 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 isValidPattern(digit1, digit2, digit3, digit4) and win then print (lastBet.Roll) print (lastBet.Id) currentStreak = currentStreak + 1 bethigh = not bethigh else currentStreak = 0 bethigh = true end if currentStreak >= targetStreak then ching() stop() end end function round(x) return math.floor(x + 0.5) end function isValidPattern(digit1, digit2, digit3, digit4) return (digit1 == targetDigit or digit2 == targetDigit or digit3 == targetDigit or digit4 == targetDigit) end
-
pfodo reacted to Serlite in 🏆 [$800] The Greatest Minds: Isaac Newton 🍎
Bet: 76,059,383,338
placed by Serlite on 12/01/2021
Wagered
0.00024100 Multiplier
4.00x Profit
0.00072300 Bet: 76,059,559,696
placed by Serlite on 12/01/2021
Wagered
0.00024100 Multiplier
4.00x Profit
0.00072300 A nice and simple hunt within a range of numbers - this is a blast from the past! Here's a script I dusted off for this challenge. As usual, paste it into the Code tab of dicebot in Programmer Mode, and feel free to adjust the bet/currency as desired:
chance = 24.7500 nextbet = 0.00024100 bethigh = false currency = "Ltc" local lowerLimit = 8.61 local upperLimit = 9.61 function dobet() if win and lastBet.Roll >= lowerLimit and lastBet.Roll <= upperLimit then print(tostring(lastBet.Id)) ching() stop() end end
-
pfodo reacted to Serlite in 🏆 [$800] Around the Globe: Spain 🇪🇸
Well, this is a nice and easy one - hopefully everyone gives this a shot!
Bet: 67,327,612,359
placed by Serlite on 14/09/2020
Wagered
3.68000000 Multiplier
2.00x Profit
3.68000000 Bet: 67,327,612,573
placed by Serlite on 14/09/2020
Wagered
3.68000000 Multiplier
2.00x Profit
3.68000000 Bet: 67,327,612,795
placed by Serlite on 14/09/2020
Wagered
3.68000000 Multiplier
2.00x Profit
3.68000000 Bet: 67,327,613,008
placed by Serlite on 14/09/2020
Wagered
3.68000000 Multiplier
2.00x Profit
3.68000000 As for the script, well, it may be familiar to some of you. But I haven't used it in a while! As usual, paste it into the Code tab of Dicebot in Programmer Mode. Feel free to update currency/amount as desired. Good luck!
chance = 49.5 nextbet = 3.68 bethigh = true currency = "Doge" local targetStreak = 4 local longestAscendingStreak = 0 local lastWinningRollNumber = 100 function dobet() if win then if lastBet.Roll > lastWinningRollNumber then longestAscendingStreak = longestAscendingStreak + 1 print(lastBet.id) else longestAscendingStreak = 1 print(lastBet.id) end lastWinningRollNumber = lastBet.Roll else longestAscendingStreak = 0 lastWinningRollNumber = 100 end if longestAscendingStreak >= targetStreak then ching() stop() end end
-
pfodo reacted to Serlite in 🏆 [3.2 ETH] Around the Globe: Ireland 🍀
This one's not too bad! As long as you can use dicebot to your advantage...
Bet: 60,511,822,920
placed by Serlite on 09/06/2020
Wagered
3.71000000 Multiplier
20.00x Profit
70.49000000 Bet: 60,512,853,120
placed by Serlite on 09/06/2020
Wagered
3.71000000 Multiplier
20.00x Profit
70.49000000 For the script, it's not too complex - with the caveat that by default Seuntjie's dicebot does not retrieve the numerical bet ID. In order to make it to do, you need to create a file "slow.txt" and put it in the main dicebot folder. This will cause dicebot to do an extra call to get that ID, slowing down betting - so remove it when you need to bet fast! Otherwise, you'll be in for an aggravating experience.
As usual, change the currency/amount as needed. And don't forget to swap bethigh when you need to hunt different sides!
chance = 4.9500 nextbet = 3.71 bethigh = false currency = "Doge" function dobet() local betIdString = tostring(lastBet.Id) if win and string.sub(betIdString, -2) == "20" then print(lastBet.Roll) print(lastBet.Id) ching() stop() end end
-
pfodo reacted to hustler1984 in 🥇 [0.2 BTC] Coin Walker 🕴
Bet: 57,864,344,767
placed by hustler1984 on 13/05/2020
Wagered
0.00500000 Multiplier
3.00x Profit
0.01000000 Bet: 57,864,346,011
placed by hustler1984 on 13/05/2020
Wagered
0.01000000 Multiplier
3.00x Profit
0.02000000 Bet: 57,864,347,483
placed by hustler1984 on 13/05/2020
Wagered
0.02000000 Multiplier
3.00x Profit
0.04000000 Bet: 57,864,348,552
placed by hustler1984 on 13/05/2020
Wagered
0.04000000 Multiplier
3.00x Profit
0.08000000 Bet: 57,864,349,782
placed by hustler1984 on 13/05/2020
Wagered
0.08000000 Multiplier
3.00x Profit
0.16000000 Bet: 57,864,350,969
placed by hustler1984 on 13/05/2020
Wagered
0.16000000 Multiplier
3.00x Profit
0.32000000 Bet: 57,864,352,006
placed by hustler1984 on 13/05/2020
Wagered
0.32000000 Multiplier
3.00x Profit
0.64000000 Bet: 57,864,353,128
placed by hustler1984 on 13/05/2020
Wagered
0.64000000 Multiplier
3.00x Profit
1.28000000 Not going to show my next bet
-
pfodo got a reaction from singpays in 🥇 [0.2 BTC] Happy Easter 🐇
Bet: 55,204,315,086
placed by pfodo on 13/04/2020
Wagered
0.00031000 Multiplier
30.00x Profit
0.00899000
-
pfodo reacted to Saaho2019 in 🥇 [0.2 BTC] Piggy Bank 💰 | VIP
10.10 |
Bet: 55,164,640,878
placed by Saaho2019 on 13/04/2020
Wagered
0.00200000 Multiplier
2.00x Profit
-0.00200000
19.19 |
Bet: 55,177,605,893
placed by Saaho2019 on 13/04/2020
Wagered
0.00011110 Multiplier
1.01x Profit
0.00000113 28.28 |
Bet: 55,166,500,953
placed by Saaho2019 on 13/04/2020
Wagered
0.00017955 Multiplier
1.01x Profit
0.00000183 37.37 |
Bet: 55,172,512,305
placed by Saaho2019 on 13/04/2020
Wagered
0.00017955 Multiplier
1.01x Profit
0.00000183 46.46 |
Bet: 55,166,792,926
placed by Saaho2019 on 13/04/2020
Wagered
0.00017955 Multiplier
1.01x Profit
0.00000183 55.55 |
Bet: 55,183,256,544
placed by Saaho2019 on 13/04/2020
Wagered
0.00011111 Multiplier
1.01x Profit
0.00000113 64.64 |
Bet: 55,169,620,066
placed by Saaho2019 on 13/04/2020
Wagered
0.00017955 Multiplier
1.01x Profit
0.00000183 73.73 |
Bet: 55,170,881,500
placed by Saaho2019 on 13/04/2020
Wagered
0.00017955 Multiplier
1.01x Profit
0.00000183 82.82 |
Bet: 55,165,546,489
placed by Saaho2019 on 13/04/2020
Wagered
0.00017955 Multiplier
1.01x Profit
0.00000183 91.91 |
Bet: 55,162,298,496
placed by Saaho2019 on 13/04/2020
Wagered
0.00023715 Multiplier
1.01x Profit
0.00000242
-
pfodo got a reaction from petikemas in 🥇 [0.2 BTC] Piggy Bank 💰 | VIP
37.37
Bet: 55,139,836,988
placed by pfodo on 13/04/2020
Wagered
0.02500000 Multiplier
1.01x Profit
0.00025500 91.91
Bet: 55,141,075,331
placed by pfodo on 13/04/2020
Wagered
0.03000000 Multiplier
1.01x Profit
0.00030600 10.10
Bet: 55,141,601,077
placed by pfodo on 13/04/2020
Wagered
0.03000000 Multiplier
1.01x Profit
0.00030600 46.46
Bet: 55,142,087,105
placed by pfodo on 13/04/2020
Wagered
0.03000000 Multiplier
1.01x Profit
0.00030600 28.28
Bet: 55,142,245,076
placed by pfodo on 13/04/2020
Wagered
0.03000000 Multiplier
1.01x Profit
0.00030600 82.82
Bet: 55,143,378,321
placed by pfodo on 13/04/2020
Wagered
0.03000000 Multiplier
1.01x Profit
0.00030600 19.19
Bet: 55,143,813,414
placed by pfodo on 13/04/2020
Wagered
0.03000000 Multiplier
1.01x Profit
0.00030600 64.64
Bet: 55,144,625,239
placed by pfodo on 13/04/2020
Wagered
0.03000000 Multiplier
1.01x Profit
0.00030600 73.73
Bet: 55,145,315,807
placed by pfodo on 13/04/2020
Wagered
0.03000000 Multiplier
1.01x Profit
0.00030600 55.55
Bet: 55,145,631,607
placed by pfodo on 13/04/2020
Wagered
0.10000000 Multiplier
1.01x Profit
0.00102000
-
pfodo reacted to petikemas in 🥇 [0.2 BTC] Golden Dice 🎲
Bet: 54,096,059,890
placed by petikemas on 01/04/2020
Wagered
0.00010000 Multiplier
2.00x Profit
0.00010000
Bet: 54,096,062,417
placed by petikemas on 01/04/2020
Wagered
0.00010000 Multiplier
2.00x Profit
0.00010000
Bet: 54,096,064,957
placed by petikemas on 01/04/2020
Wagered
0.00010000 Multiplier
2.00x Profit
0.00010000
Bet: 54,096,066,803
placed by petikemas on 01/04/2020
Wagered
0.00010000 Multiplier
2.00x Profit
0.00010000
Bet: 54,096,068,758
placed by petikemas on 01/04/2020
Wagered
0.00010000 Multiplier
2.00x Profit
0.00010000
Bet: 54,096,101,739
placed by petikemas on 01/04/2020
Wagered
0.00010000 Multiplier
2.00x Profit
0.00010000
Bet: 54,096,107,612
placed by petikemas on 01/04/2020
Wagered
0.00010000 Multiplier
2.00x Profit
0.00010000
Bet: 54,096,121,762
placed by petikemas on 01/04/2020
Wagered
0.00010000 Multiplier
2.00x Profit
0.00010000
Bet: 54,096,126,348
placed by petikemas on 01/04/2020
Wagered
0.00010000 Multiplier
2.00x Profit
0.00010000
Bet: 54,096,472,063
placed by petikemas on 01/04/2020
Wagered
0.00010000 Multiplier
2.00x Profit
0.00010000
Bet: 54,096,518,948
placed by petikemas on 01/04/2020
Wagered
0.00010000 Multiplier
2.00x Profit
0.00010000
Bet: 54,096,632,547
placed by petikemas on 01/04/2020
Wagered
0.00010000 Multiplier
2.00x Profit
0.00010000
-
pfodo got a reaction from kiran232 in 🥇 [0.2 BTC] Golden Dice 🎲
10 in a row
Bet: 54,165,730,167
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
Bet: 54,165,730,630
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
Bet: 54,165,731,125
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
Bet: 54,165,731,627
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
Bet: 54,165,732,346
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
Bet: 54,165,732,836
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
Bet: 54,165,733,305
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
Bet: 54,165,733,777
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
Bet: 54,165,734,264
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
Bet: 54,165,734,755
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
Bet: 54,165,735,409
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
Bet: 54,165,735,882
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
Bet: 54,165,736,354
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
Bet: 54,165,736,868
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
Bet: 54,165,737,352
placed by pfodo on 01/04/2020
Wagered
4.00100000 Multiplier
2.00x Profit
4.00100000
-
pfodo got a reaction from VrOdaN in 🏆 [0.08 BTC] Around the Globe: Indonesia 🎑
5.00
Bet: 54,003,594,572
placed by pfodo on 30/03/2020
Wagered
0.03500000 Multiplier
1.01x Profit
0.00035700 13.90
Bet: 54,019,326,313
placed by pfodo on 30/03/2020
Wagered
0.03500000 Multiplier
1.01x Profit
0.00035700 17.00
Bet: 53,998,123,372
placed by pfodo on 30/03/2020
Wagered
0.03500000 Multiplier
1.01x Profit
0.00035700 19.45
Bet: 54,001,176,285
placed by pfodo on 30/03/2020
Wagered
0.03500000 Multiplier
1.01x Profit
0.00035700 26.70
Bet: 54,006,868,701
placed by pfodo on 30/03/2020
Wagered
0.03500000 Multiplier
1.01x Profit
0.00035700 🢃 🢃 SCREENSHOTS 🢃 🢃
-
pfodo reacted to Serlite 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
-
pfodo reacted to Maja in 🏆 [0.08 BTC] Walk of Fame: 🛫 Lady Lindy 🛬
Bet: 47,627,500,767
placed by Maja on 20/01/2020
Wagered
0.00005200 Multiplier
99.00x Profit
0.00509600 99.61
Bet: 47,627,628,254
placed by Maja on 20/01/2020
Wagered
0.00005200 Multiplier
99.00x Profit
0.00509600 99.69
Bet: 47,627,991,569
placed by Maja on 20/01/2020
Wagered
0.00005200 Multiplier
99.00x Profit
0.00509600 99.73
Bet: 47,628,050,793
placed by Maja on 20/01/2020
Wagered
0.00005200 Multiplier
99.00x Profit
0.00509600 99.37
-
pfodo got a reaction from kiran232 in 🏆 [0.08 BTC] Walk of Fame: The Red Baron 🚨
First - Win a bet with 3300 multiplier, rolling over 99.96
Bet: 42,900,384,541
placed by pfodo on 25/11/2019
Wagered
0.00000100 Multiplier
3300.00x Profit
0.00329900 Second - Win a bet with 1650 multiplier, rolling under 0.06
Bet: 42,909,097,109
placed by pfodo on 25/11/2019
Wagered
0.00000100 Multiplier
1650.00x Profit
0.00164900 Third - Win a bet with 7 multiplier, rolling the exact number 7.00
Bet: 42,911,550,816
placed by pfodo on 25/11/2019
Wagered
0.00000100 Multiplier
7.00x Profit
0.00000600
-
pfodo reacted to Jovan in 🏆 [0.08 BTC] Walk of Fame: The Red Baron 🚨
Walk of Fame: The Red Baron 🚖
Ends: 02/12/19 @ Midday (12pm) GMT
Requirement:
First - Win a bet with 3300 multiplier, rolling over 99.96 Second - Win a bet with 1650 multiplier, rolling under 0.06 Third - Win a bet with 7 multiplier, rolling the exact number 7.00 All bets must have been made in the exact order. Bets do not have to be consecutive and you are allowed to change the seed. Minimum bet: 0.00000100 0.00003400 0.00004900 0.00016000 3.07000000 0.03100000 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 duration of the promotion. 10+ forum post count. Haven't broken any General Giveaways Rules! Prize Pool(s)
Minimum prize pool: 0.01 BTC If over 30 participants: 0.03 BTC If over 50 participants: 0.05 BTC If over 100 participants: 0.06 BTC If over 200 participants: 0.08 BTC
How to Enter
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)
-
pfodo got a reaction from 26Rola in 🏆 [0.08 BTC] Walk of Fame: The Red Baron 🚨
First - Win a bet with 3300 multiplier, rolling over 99.96
Bet: 42,900,384,541
placed by pfodo on 25/11/2019
Wagered
0.00000100 Multiplier
3300.00x Profit
0.00329900 Second - Win a bet with 1650 multiplier, rolling under 0.06
Bet: 42,909,097,109
placed by pfodo on 25/11/2019
Wagered
0.00000100 Multiplier
1650.00x Profit
0.00164900 Third - Win a bet with 7 multiplier, rolling the exact number 7.00
Bet: 42,911,550,816
placed by pfodo on 25/11/2019
Wagered
0.00000100 Multiplier
7.00x Profit
0.00000600
-
pfodo reacted to lukasondro94 in 🏆 [0.08 BTC] Walk of Fame: MoonWalker 🌛
97.55
Bet: 41,736,106,352
placed by lukasondro94 on 13/11/2019
Wagered
0.00014000 Multiplier
36.00x Profit
0.00490000 2.57
Bet: 41,736,110,050
placed by lukasondro94 on 13/11/2019
Wagered
0.00014000 Multiplier
36.00x Profit
0.00490000
-
pfodo reacted to Sneja613 in 🏆 [0.1 BTC] Primedice & Chill: F.R.I.E.N.D.S
Bet: 37,024,151,296
placed by Sneja613 on 18/09/2019
Wagered
0.00000100 Multiplier
6.00x Profit
0.00000500
Bet: 37,026,263,966
placed by Sneja613 on 18/09/2019
Wagered
0.00000100 Multiplier
6.00x Profit
0.00000500
-
pfodo got a reaction from
groshmanin 🏆 [0.1 BTC] Primedice & Chill: Stranger Things
Bet: 35,072,652,306
placed by pfodo on 19/08/2019
Wagered
0.00005400 Multiplier
11.00x Profit
0.00054000 Bet: 35,072,652,690
placed by pfodo on 19/08/2019
Wagered
0.00005400 Multiplier
11.00x Profit
0.00054000 Bet: 35,072,653,102
placed by pfodo on 19/08/2019
Wagered
0.00005400 Multiplier
11.00x Profit
0.00054000
-
pfodo reacted to hui in [0.0033 BTC] Nice Chat Challenge IV
Nice Chat Challenge IV
Due to the huge success we'll have another occasion where a nice chat not only gives us a better time but also the chance for some prizes!
Starting Wednesday 00:00:00 UTC and ending Friday at the same time I will again calculate the average number of words per message in the (english) chat of all participants (and also take into account the number of total messages as a minor help in case of draws).
For the resulting Top-Chatters I will quickly (but not thoroughly) skim through the chat to check if the chat rules were applied and that no alts were used in the time period.
The prizes will be as follows:
0.00100000 0.00066666 0.00044444 0.00030000 0.00020000 0.00013333 0.00010000 0.00007000 0.00005000 0.00003557 Additionally I will also give out up to 3 special prizes (0.0001 BTC each) for the coolest/nicest/most funny messages during that time nominated by you. To nominate someone else for one of these prizes please quote their name and the message you liked best in this thread. I will use my subjective judgment for those.
Good luck everyone - and most importantly have fun on the keyboard!
-
pfodo reacted to UltraChief in [0.0016BTC] [Raffle - 4] Ultra's Raffles! Enter your names here!
Here is the winners list for Raffle - 4
1 - MrNice23
2 - pfodo
3-Burek123
4 - noeprellik
5 - GKD09
6 - dikarico
7-1RegisterNow
8-denildan9
9 giorgim66
10 - majes201
11 bondardima
12 - jamyr
13 - samsul123
14 - sheenlove
15-yomzkie
16 lupandina
I can still see people editing posts like @Swakto @Philip74 @gwapoman - they got disqualified for that.
@noobsaybot you number picking was correct, but you forum account was not linked to primedice account.
Please read the rules next time people, you are in a rush to win, which is normal but then you lose out like this.
-
pfodo got a reaction from rak in [0.01 BTC] The long running giveaway (Test 2)
it must be 35.50 not 34.50 dude
-
pfodo got a reaction from MrNice23 in XRP in Primedice!!!
Yes, I deposited using builtin Coinswitch Exchange there.