0% found this document useful (0 votes)
94 views3 pages

Document

The document provides instructions for a Bitcoin dice betting script that has been tested with over 10 million bets. The script adjusts the bet size based on losing streaks, starting at 0.00000001 BTC and increasing the bet up to 0.04182276 BTC depending on the length of the losing streak. It also resets the bet back to the base amount if a win occurs. Contact information is provided for Bitcoin, Ethereum, and Bitcoin Cash addresses.

Uploaded by

Florin Costache
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
94 views3 pages

Document

The document provides instructions for a Bitcoin dice betting script that has been tested with over 10 million bets. The script adjusts the bet size based on losing streaks, starting at 0.00000001 BTC and increasing the bet up to 0.04182276 BTC depending on the length of the losing streak. It also resets the bet back to the base amount if a win occurs. Contact information is provided for Bitcoin, Ethereum, and Bitcoin Cash addresses.

Uploaded by

Florin Costache
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

--Bitcoin DiceBot Script

--https://www.bitsler.com/?ref=NotABot
--BTC:1JTENHueTGdpwiEncK9QNJN68CY7xM7brZ
--ETH:0xD1736C8F5db9d5242b45c4B9efD696f13F62C1FC
--BCH:qphwjnhwp00uejyt85xh6vd5l0cwteavluc50c7jn7
--LTC:LZLw6WWDoseQ4AJJnNbSwvEYKSx58HrB3b

--Below is a script for very successful Dicebot that is safe to use. This script
has been tested with over 10 million bets and has --never crashed. The higher
your bank is the more loses you can take. This script can be adjusted to other
coins you just have to --delete some zeros in the bets.

--SCRIPT BELOW HERE

basebet = 0.00000001
chance = 31.58
nextbet = basebet

function dobet()
if win then
nextbet = basebet
end
if currentstreak == -3 then
nextbet = 0.00000002
end
if currentstreak == -4 then
nextbet = 0.00000003
end
if currentstreak == -5 then
nextbet = 0.00000004
end
if currentstreak == -6 then
nextbet = 0.00000006
end
if currentstreak == -7 then
nextbet = 0.00000009
end
if currentstreak == -8 then
nextbet = 0.00000013
end
if currentstreak == -9 then
nextbet = 0.00000019
end
if currentstreak == -10 then
nextbet = 0.00000028
end
if currentstreak == -11 then
nextbet = 0.00000041
end
if currentstreak == -12 then
nextbet = 0.00000061
end
if currentstreak == -13 then
nextbet = 0.00000089
end
if currentstreak == -14 then
nextbet = 0.00000131
end
if currentstreak == -15 then
nextbet = 0.00000192
end
if currentstreak == -16 then
nextbet = 0.00000282
end
if currentstreak == -17 then
nextbet = 0.00000414
end
if currentstreak == -18 then
nextbet = 0.00000608
end
if currentstreak == -19 then
nextbet = 0.00000893
end
if currentstreak == -20 then
nextbet = 0.00001311
end
if currentstreak == -21 then
nextbet = 0.00001925
end
if currentstreak == -22 then
nextbet = 0.00002827
end
if currentstreak == -23 then
nextbet = 0.00004151
end
if currentstreak == -24 then
nextbet = 0.00006096
end
if currentstreak == -25 then
nextbet = 0.00008951
end
if currentstreak == -26 then
nextbet = 0.00013144
end
if currentstreak == -27 then
nextbet = 0.00019300
end
if currentstreak == -28 then
nextbet = 0.00028341
end
if currentstreak == -29 then
nextbet = 0.00041616
end
if currentstreak == -30 then
nextbet = 0.00061109
end
if currentstreak == -31 then
nextbet = 0.00089733
end
if currentstreak == -32 then
nextbet = 0.00131764
end
if currentstreak == -33 then
nextbet = 0.00193483
end
if currentstreak == -34 then
nextbet = 0.00284112
end
if currentstreak == -35 then
nextbet = 0.00417192
end
if currentstreak == -36 then
nextbet = 0.00612607
end
if currentstreak == -37 then
nextbet = 0.00899556
end
if currentstreak == -38 then
nextbet = 0.01320913
end
if currentstreak == -39 then
nextbet = 0.01939637
end
if currentstreak == -40 then
nextbet = 0.02848174
end
if currentstreak == -41 then
nextbet = 0.04182276
end
end

You might also like