Pages:
Author

Topic: DiceBot Script! - page 3. (Read 800 times)

member
Activity: 226
Merit: 30
so.. hru?
March 17, 2018, 09:09:29 PM
#1
Hey, just sharing a dicebot script, that I tweaked from stretched preroll martingale, and got the idea from 505, and MathWins mathingale Cheesy

I've made around 0.19 doge from 0.01 in one day so I hope you guys win too, just so you know, that no script will make you money forever.

EDIT: Please tip seuntjie if you do win!, he's the one who created dicebot and the script, I just put my settings in   Grin

Anyways, explanation of the script.

It increases the base bet by 2.5x every 8 turns, on a 8x multiplier, so each   I.E (1,1,1,1,1,1,1,1)(8 bets) loss is called a plateau.

When hitting in the beginning of a plateau, you gain massive profit, previous to the last plateau.

When hitting at the middle or the end of a plateau, you either break even or lose small on a win.
========================
For the best case scenario, You lost 24 times in a row (3 plateaus ), and hit on the 25th try (beginning of the 4th plateau).
(1* 8 ) + (2.5*8 ) + (6.25*8 ) = 78 units lost.
Now the next bet is 6.25*2.5 = 15.625
(15.625*8 ) = 125 units won
47 units profit, because you hit at the beginning of a plateau.
=======================
For the worst case scenario, You lost 23 times in a row(3rd plateau about to end ), and hit on the 24th try.(end of 3rd plateau)
(1* 8 ) + (2.5*8 ) + (6.25* 7) = 71.75 units lost
Our next bet is 6.25, because we didn't reach the 4th plateau.
(6.25*8 ) = 50 units won
-21.75 units profit.
========================
Basically, if you lose a lot, but hit in the beginning of a plateau, you will hit a lot.

If you lose a lot and hit at the end or middle of a plateau, you lose small, or break even.

Anyways, enough explaining, here's the script Smiley

Code:
--LOLDevin's modified mathingale.
--Thanks to Seuntjie, because of this script,
-- orangutan, and MathWins for this idea!

chance=12.38
multiplier=2.5
base=0.00002 -- balance/1000-10000
preroll=1
prebet=0.00000001
stretch=8
function dobet()
 tmp = currentstreak+preroll
 if win then
  nextbet=prebet
 else
  if tmp == 0 then
   nextbet=base
  end
  if tmp < 0 then
   if tmp %stretch == 0 then
    nextbet=previousbet*multiplier
   end
  end
 end
end
Pages:
Jump to: