Advertisement
coinwalk

cookoo

Mar 18th, 2021
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. fraction = 50
  2. basebet = 0.01
  3. base = 0.01
  4. chance = 49.95
  5. nextbet = basebet
  6. bethigh = false
  7. oldbal = balance
  8. target = 100
  9. wage = base
  10. resetstats()
  11.  
  12.  
  13. function dobet()
  14. wage = wage+previousbet
  15. nextbet = wage
  16. end
  17. if (balance>=oldbal) then
  18. nextbet = basebet
  19. wage = base
  20. oldbal = balance
  21. end
  22. if (balance>=target) then
  23. stop()
  24. end
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement