Advertisement
coinwalk

omfg

Mar 11th, 2021
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 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. bim = 0
  12. resetstats()
  13.  
  14.  
  15. function dobet()
  16. wage = wage+previousbet
  17. if (!win) and (chance==90) then
  18. nextbet = ((wage*9.5)+basebet)
  19. bim+=1
  20. end
  21. if (win) and (chance==90) then
  22. bim = 0
  23. end
  24. if bim>=2 then
  25. chance = 24
  26. bim = 0
  27. end
  28. if (!win) and (chance==24) then
  29. nextbet = ((wage/3)+basebet)
  30. sux = sux+1
  31. end
  32. if (win) and (chance==24) then
  33. sux = 0
  34. bethigh = !bethigh
  35. chance = 90
  36. end
  37. if (sux>=3) then
  38. nextbet = wage*16
  39. chance = 90
  40. bim = 0
  41. sux = 0
  42. end
  43. if (balance>=oldbal) then
  44. nextbet = balance/fraction
  45. sux = 0
  46. wage = 0
  47. oldbal = balance
  48. end
  49. if (balance>=target) then
  50. stop()
  51. end
  52. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement