Advertisement
coinwalk

crazy

Oct 12th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. fraction = 100
  2. basebet = balance/fraction
  3. box = balance/fraction
  4. chance = 49.95
  5. nextbet = basebet
  6. bethigh = false
  7. slim = balance
  8. cron = 0
  9. com = balance
  10. google = box*12
  11. bing = (balance-(basebet*8))
  12. bong = (balance+(basebet*8))
  13. james = balance
  14. target = 50000
  15. resetstats()
  16. function dobet()
  17. if balance<james-google then
  18. basebet = (balance/(fraction/4))
  19. nextbet = basebet
  20. slim = balance
  21. com = balance
  22. bing = (balance-(basebet*8))
  23. bong = (balance+(basebet*8))
  24. end
  25. if (balance<com) then
  26. nextbet = previousbet/2
  27. com = balance
  28. slim = balance
  29. end
  30. if (balance>slim) then
  31. nextbet = previousbet*2
  32. com = balance
  33. slim = balance
  34. end
  35. if ((balance-nextbet)<=bing) then
  36. nextbet = basebet
  37. bing = (balance-(basebet*8))
  38. bong = (balance+(basebet*8))
  39. end
  40. if ((balance+nextbet)>=bong) then
  41. nextbet = basebet
  42. bing = (balance-(basebet*8))
  43. bong = (balance+(basebet*8))
  44. end
  45. if balance<james-google then
  46. basebet = (balance/(fraction/4))
  47. slim = balance
  48. com = balance
  49. bing = (balance-(basebet*8))
  50. bong = (balance+(basebet*8))
  51. james = balance
  52. nextbet = basebet
  53. end
  54. if (nextbet>=(basebet*8)) or (nextbet<=(basebet/4)) then
  55. nextbet = basebet
  56. end
  57. if (balance>james+google) then
  58. basebet = box
  59. nextbet = box
  60. bing = (balance-(basebet*8))
  61. bong = (balance+(basebet*8))
  62. slim = balance
  63. com = balance
  64. james = balance
  65. google = box*12
  66. nextbet = basebet
  67. end
  68. if balance>target then
  69. stop()
  70. end
  71. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement