Advertisement
coinwalk

crazybot

Mar 16th, 2021
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. fraction = 100000
  2. basebet = balance/fraction
  3. base = basebet
  4. chance = 24
  5. nextbet = basebet
  6. bethigh = false
  7. oldbal = balance
  8. target = 50000
  9. sux = false
  10. wage = base
  11. bim = false
  12. zim = false
  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(chance==24)) then
  26. bim = true
  27. end
  28. if (bim==true) then
  29. bethigh = !bethigh
  30. nextbet = wage
  31. chance = 49.95
  32. bim = false
  33. sixy = true
  34. end
  35. if ((doh==true)and(lastBet.Chance==49.95000)) then
  36. sux = true
  37. end
  38. if (sux==true) then
  39. nextbet = wage*10
  40. bethigh = !bethigh
  41. chance = 90
  42. sux = false
  43. end
  44. if ((doh==true)and(lastBet.Chance==90.000)) then
  45. zim = true
  46. end
  47. if (zim==true) then
  48. nextbet = wage*2
  49. bethigh = !bethigh
  50. chance = 24
  51. zim = false
  52. end
  53. if (balance>=oldbal) then
  54. nextbet = balance/fraction
  55. sux = false
  56. bim = false
  57. zim = false
  58. wage = base
  59. oldbal = balance
  60. end
  61. if (balance>=target) then
  62. stop()
  63. end
  64. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement