Advertisement
coinwalk

omg++++

Mar 9th, 2021
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. fraction = 50000
  2. basebet = balance/fraction
  3. base = basebet
  4. chance = 90
  5. nextbet = basebet
  6. bethigh = false
  7. oldbal = balance
  8. target = 50000
  9. sux = 0
  10. wage = 0
  11. resetstats()
  12.  
  13.  
  14. function dobet()
  15. wage = wage+previousbet
  16. if (!win) and (chance==90) then
  17. nextbet = previousbet*2
  18. chance = 24
  19. end
  20. if (!win) and (chance==24) then
  21. nextbet = ((wage/3)+basebet)
  22. sux = sux+1
  23. end
  24. if (win) and (chance==24) then
  25. sux = 0
  26. chance = 90
  27. end
  28. if (sux>=3) then
  29. nextbet = wage*20
  30. chance = 90
  31. sux = 0
  32. end
  33. if (balance>=oldbal) then
  34. nextbet = balance/fraction
  35. basebet = balance/fraction
  36. sux = 0
  37. wage = 0
  38. oldbal = balance
  39. end
  40. if (balance>=target) then
  41. stop()
  42. end
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement