Advertisement
coinwalk

crazybot

Mar 16th, 2021
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. fraction = 50000
  2. basebet = balance/fraction
  3. base = basebet
  4. chance = 24
  5. nextbet = basebet
  6. bethigh = false
  7. oldbal = balance
  8. target = 50000
  9. sux = 0
  10. wage = base
  11. bim = 0
  12. zim = 0
  13. resetstats()
  14.  
  15.  
  16. function dobet()
  17. wage = wage+previousbet
  18. if (!win) and (chance==24) and box==false then
  19. nextbet = wage/3
  20. bim+=1
  21. end
  22. if (win) and (chance==24) then
  23. nextbet = wage/3
  24. end
  25. if bim>=3 then
  26. bethigh = !bethigh
  27. chance = 49.95
  28. bim = 0
  29. end
  30. if (!win) and (chance==49.95) then
  31. nextbet = wage
  32. sux+=1
  33. end
  34. if (win) and (chance==49.95) then
  35. bethigh = !bethigh
  36. sux = 0
  37. chance = 24
  38. end
  39. if (sux>=3) then
  40. nextbet = wage/3
  41. bethigh = !bethigh
  42. chance = 90
  43. bim = 0
  44. sux = 0
  45. end
  46. if (!win) and (chance==90) then
  47. nextbet = wage*5
  48. zim+=1
  49. end
  50. if (win) and (chance==90) then
  51. bethigh = !bethigh
  52. sux = 0
  53. chance = 24
  54. end
  55. if (zim>=1) then
  56. nextbet = wage*2
  57. bethigh = !bethigh
  58. chance = 24
  59. bim = 0
  60. box = true
  61. sux = 0
  62. end
  63. if (!win) and (chance==24) and box==true then
  64. nextbet = wage*2
  65. bim+=1
  66. end
  67. if (balance>=oldbal) then
  68. nextbet = balance/fraction
  69. sux = 0
  70. bim = 0
  71. zim = 0
  72. box = false
  73. wage = base
  74. oldbal = balance
  75. end
  76. if (balance>=target) then
  77. stop()
  78. end
  79. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement