Advertisement
coinwalk

waiting for red c95

May 27th, 2021
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. cat = 50000
  2. x = balance/cat
  3. y = balance/cat
  4. k = 0
  5. chance = 24.975
  6. bob = 24.975
  7. nextbet = y
  8. bethigh = false
  9. target = 500000
  10. old = balance
  11. elf = balance
  12. j = false
  13. busted = 0
  14. bust = 0
  15. f = false
  16. olf = balance
  17. resetstats()
  18.  
  19. function dobet()
  20. if (not win) then
  21. busted = busted+1
  22. bust = bust+1
  23. end
  24. if (busted>=4) and f==false then
  25. nextbet = previousbet*14
  26. chance = 49.95
  27. busted = 0
  28. f = true
  29. end
  30. if (bust>=10) and j==false then
  31. nextbet = previousbet*240
  32. chance = 95
  33. bust = 0
  34. j = true
  35. end
  36. if ((balance>=(olf+(x*2))) and (balance<old)) or (balance<=(elf-(x*5))) then
  37. nextbet = previousbet*2
  38. x = nextbet
  39. olf = balance
  40. elf = balance
  41. end
  42. if balance>elf then
  43. elf = balance
  44. end
  45. if balance<olf then
  46. olf = balance
  47. end
  48. if (balance>=old) then
  49. nextbet = y
  50. chance = bob
  51. f = false
  52. j = false
  53. x = y
  54. bust = 0
  55. busted = 0
  56. elf = balance
  57. olf = balance
  58. old = balance
  59. resethistory()
  60. end
  61. if balance>=target then
  62. stop()
  63. end
  64. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement