Advertisement
coinwalk

nice crazybot

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