Advertisement
coinwalk

crazybot 2.01

Mar 16th, 2021
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 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. if !win then
  18. doh = true
  19. else
  20. doh = false
  21. chance = 24
  22. bethigh = !bethigh
  23. end
  24. wage = wage+previousbet
  25. if ((doh==true)and(lastBet.Chance==24.000)) then
  26. nextbet = wage/3
  27. bim+=1
  28. end
  29. if (bim>=2) then
  30. bethigh = !bethigh
  31. nextbet = wage
  32. chance = 49.95
  33. bim = 0
  34. end
  35. if ((doh==true)and(lastBet.Chance==49.95000)) then
  36. nextbet = wage
  37. sux+=1
  38. end
  39. if (sux>=2) then
  40. nextbet = wage*10
  41. bethigh = !bethigh
  42. chance = 90
  43. sux = 0
  44. end
  45. if ((doh==true)and(lastBet.Chance==90.000)) then
  46. nextbet = wage*10
  47. zim+=1
  48. end
  49. if (zim>=2) then
  50. nextbet = wage*2
  51. bethigh = !bethigh
  52. chance = 24
  53. zim = 0
  54. end
  55. if (balance>=oldbal) then
  56. nextbet = balance/fraction
  57. base = balance/fraction
  58. sux = 0
  59. bim = 0
  60. zim = 0
  61. wage = base
  62. oldbal = balance
  63. end
  64. if (balance>=target) then
  65. stop()
  66. end
  67. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement