Advertisement
coinwalk

try on dicebot

Jan 12th, 2019
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. chance=49
  2. base=0.000010
  3. prebet=0.00000010
  4. function dobet()
  5. r=math.random(2)
  6. if r == 1 then
  7. bethigh=true
  8. else
  9. bethigh=false
  10. end
  11. if win then
  12. nextbet=prebet
  13. else
  14. nextbet=previousbet*2
  15. end
  16. if currentstreak == -5 then
  17. resetseed();
  18. end
  19. if currentstreak == 8 then
  20. nextbet=base
  21. resetseed();
  22. end
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement