Advertisement
coinwalk

freaking genius

Oct 18th, 2019
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. chance = 24.975
  2. nextbet = prebet
  3. prebet = balance/1000
  4. losecount = 0
  5.  
  6. function dobet()
  7. if win then
  8. prebet = balance/1000
  9. nextbet = prebet
  10. if (bethigh ==true) then bethigh=false else bethigh=true end
  11. losecount = 0
  12. else
  13. losecount += 1
  14. if math.fmod(losecount,2)==0 and (losecount >= 4) then
  15. nextbet = previousbet*2
  16. end
  17. if (currentstreak ==-22) then
  18. resetseed();--this has no effect on 999dice since 999dice uses a per bet based seed.
  19. end
  20. end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement