

gouler
-
Content Count
81 -
Joined
-
Last visited
Reputation Activity
-
gouler reacted to WinMachine in [$800] The Greatest Minds: Vincent Van Gogh
Bet: 106,928,783,100
placed by WinMachine on 09/03/2022
Wagered
0.00005000 Multiplier
11.00x Profit
-0.00005000 80.80
Hello!
I made this simple script for this challenge, don't forget to delete numbers from list, as you catch them.
chance = 98 currency = "Ltc" -- define coin nextbet = 0.00000000 -- define amount to bet bethigh = false numbersToHunt = {10.10,20.20,30.30,40.40,50.50,60.60,70.70,80.80,90.90} function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end
-
gouler got a reaction from WildMachines in 🏛 [$1000] The Greatest Minds: Plato 🏛
Bet: 100,121,415,086
placed by gouler on 01/11/2021
Wagered
0.11115000 Multiplier
330.00x Profit
36.56835000
-
gouler got a reaction from WildMachines in 🎤[$800]The Greatest Minds - Martin Luther King🎤
Bet: 97,955,379,849
placed by gouler on 29/09/2021
Wagered
0.15252000 Multiplier
33.00x Profit
4.88064000
-
gouler got a reaction from WildMachines in [$800] ☀ The Greatest Minds - Copernicus ☀
Bet: 96,588,050,688
placed by gouler on 02/09/2021
Wagered
0.10395000 Multiplier
4.00x Profit
0.31185000
-
gouler 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
-
gouler got a reaction from andrey777 in 🥇 [8 ETH] Max Power 🚗
Bet: 61,137,235,148
placed by gouler on 15/06/2020
Wagered
5.00000000 Multiplier
10.00x Profit
45.00000000
-
gouler reacted to relink22 in 🥇 [9 ETH] Primedice Hero 💪
Bet: 59,281,948,779
placed by reflink01 on 26/05/2020
Wagered
0.00430001 Multiplier
521.05x Profit
2.23623151
-
gouler reacted to UltraChief in Hello all
That is for Primedice related support queries. Forum related support queries in Forum Support. In case of quick answers contact the support team on primedice website though.
-
gouler reacted to UltraChief in Hello all
Hello @tuzemsky @gouler
Welcome to the Primedice forum. Make sure to read the forum rules and guidelines before you start posting. Take note of the challenges posted weekly on primedice promotions section and if you have any questions feel free to ask.
Good luck and have fun. :)
-
gouler got a reaction from UltraChief in Hello all
Hello tuzemsky! Welcome to the forum. I am kinda new here as well.