I have modified the script to work with smaller balances (the main script has "resets" for low bet amounts which make using it with starting banks of less than 0.05 not run correctly (stops).
Here is a chart of approx 25,000 rolls - played on PRIMEDICE.
SCRIPT FOR PLAYERS USING BANKS LESS THAN 0.05000000 IS PROVIDED BELOW - ENJOY!
-- HeyYouGuys DiceBot Script --
-- Going Up V1.32 (For Bank Accounts < 0.05) --
-- Please consider supporting the work I share with the community simply by registering for Play Accounts using my Referral Links - It costs you nothing & It's GREATLY APPRECIATED!
-- PLEASE SUPPORT MY WORK BY REGISTERING PLAY ACCOUNTS USING MY REFFERAL LINKS SO I CAN KEEP POSTING ADDITIONAL GREAT SCRIPTS AND OFFER SUPPORT!
-- GAME SITE SIGN-UP LINK SCRIPT BETA-TESTED ON SITE
-- --------- ------------ --------------------------
-- PrimeDice https://primedice.com/?c=HeyYouGuys YES
-- 999Dice https://www.999dice.com/?89416832 NO
-- CryptoGames https://www.crypto-games.net?i=gw7DaSSW4Z YES
-- SafeDice https://safedice.com/?r=55774 No
-- Rollin.io https://rollin.io/ref/11w9 No
-- BitDice https://www.bitdice.me/?r=16818 No
-- CoinMillions https://coinmillions.com/?referral=65499 No
-- Bitsler https://www.bitsler.com/?ref=HeyYouGuys NO
-- Nitrogen Sports https://nitrogensports.eu/r/1937097 NO
-- Bit-Exo https://bit-exo.com/?ref=HeyYouGuys NO
--
-- --------------------------------------------------------------------------------------------------------
-- INSTRUCTIONS -
-- StopLossLimitBalance will stop the bot if your balance drops below this amount following the last bet.
-- StopLossLimitRound will stop the bot if your current loss amount on a SINGLE round reaches this amount. Keep in mind this bot script resets the stats for gameplay based on win timing and profit amounts. Typically every win past 10 bets will trigger a reset back to start. Enter a fraction of your balance here. Recommend twenty percent of balance. If your balance is 0.50000000 set to 0.10000000.
-- Tip - If you hit your StopLossLimitRound - NOT BALANCE, but just one ROUND, the bot will stop. Recommend the following -
-- - Go to your Code Tab, and after dobet - Change the following -
-- - BASE ONE - LINE 2 - to equal base = (((balance) - (profit * 2000)) / 350000)
-- - BASE TWO after ELSE to equal base = (((balance) - (profit * 400)) / 400000)
-- - Change StopLossLimitRound to double 2x what it was set at.
-- NEXT - Copy the code and paste into the console entry area. Hit Enter. Start Bot. This will restart the bot with lower risk numbers but still remember your current loss. DO NOT Reset your Stats. This will typically rebound if you do hit a round loss. After rebound, change the variables back to default.
-- ENJOY and please use referral links above to help support me in making new tested scripts that work!
-- ----------------------------------------------------------------------------------------------------------
-- IMPORTANT - MAKE SURE YOU SET STOP LOSSES LINES ONE AND TWO. SEE INSTRUCTIONS ABOVE.
-- GOING UP SCRIPT --
-- ------------------- --
StopLossLimitBalance = 0.00000000
StopLossLimitStreakRound = 0.00000000
bethigh = true
randomHighLow = false
base = 0.00000002
chance= 1.5
multiplier = 1
nextbet = base
curbet = base
function dobet()
if currentstreak>-75 then
base = (((balance) - (profit * 2400)) / 250000)
chance= 1.35 - (currentstreak * -0.003765)
bethigh = true
else
base = (((balance) - (profit * 400)) / 300000)
chance= 1.10
bethigh = true
end
if win then
nextbet = 0.00000002
if currentstreak<1 then
nextbet = 0.00000002
end
else
if currentstreak==-1 then
curbet = base
else
curbet = base
end
nextbet = base + 0.00000001
end
if profit > 0.00000010 then
resetstats()
end
if nextbet < 0.00000001 then
resetstats()
end
if balance < (StopLossLimitBalance) then
stop()
end
if profit < ((StopLossLimitStreakRound) * -1) then
stop()
end
if (randomHighLow) then
if (math.random() < .0237) then bethigh = !bethigh end
end
end
-- PLEASE SUPPORT MY WORK BY REGISTERING PLAY ACCOUNTS USING MY REFFERAL LINKS INCLUDED IN THE SCRIPT SO I CAN KEEP POSTING ADDITIONAL GREAT SCRIPTS AND OFFER SUPPORT!