09.87
DICE: 4,210,234,692
placed by flansca on 04/04/2019
Wagered
0.00000100
Multiplier
1.010200023651123x
Profit
0.00000001
78.90
DICE: 4,205,538,332
placed by flansca on 04/04/2019
Wagered
0.00000100
Multiplier
1.010200023651123x
Profit
0.00000001
Okay, so dice challenge has appears! I have some code for you :
For Dicebot, you can find it using !dicebot at the chat.
local_target = {01.23,32.10,12.34,43.21,23.45,54.32,34.56,65.43,45.67,76.54,56.78,87.65,67.89,98.76,78.90,09.87}
chance = 98
nextbet = 0.000001
function dobet()
for i=1, 20 do
if lastBet.Roll==local_target[i] then
ching()
stop()
-- if you having some errors, just copy by part of it. or try to retype it. Some random character also being copied in here, so any errors will occurs when you copy whole script.
end
end
end
-- for seuntjie's dicebot
For mydicebot, you can find it on forum.
target = 01.23
target2 = 32.10
target3 = 12.34
target4 = 43.21
target5 = 34.56
target6 = 65.43
target7 = 45.67
target8 = 76.54
target9 = 56.78
target10 = 87.65
target11 = 67.89
target12 = 98.76
target13 = 78.90
target14 = 09.87
chance = 98
basebet = 0.000001
bethigh = true
function dobet()
if currentroll == target then
stop()
else if currentroll == target2 then
stop()
elseif currentroll == target3 then
stop()
elseif currentroll == target4 then
stop()
elseif currentroll == target5 then
stop()
elseif currentroll == target6 then
stop()
elseif currentroll == target7 then
stop()
elseif currentroll == target8 then
stop()
elseif currentroll == target9 then
stop()
elseif currentroll == target10 then
stop()
elseif currentroll == target11 then
stop()
elseif currentroll == target12 then
stop()
elseif currentroll == target13 then
stop()
elseif currentroll == target14 then
else
nextbet = basebet
end
end
end
The bot automatically stop when you got the numbers. Just write down to a notepad or else if you already find you want
Don't forget to change nextbet currency, I'm using btc. (for seuntjie's dicebot) and eth. (for mydicebot)