Advertisement
coinwalk

jim

Sep 14th, 2020
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. basebet = balance/16000
  2. chance = 49.5
  3. nextbet = basebet
  4. bethigh = false
  5. james = balance
  6. target = 2650
  7. bot = 0
  8. bott = 0
  9. bam = 0
  10. bang = 0
  11. zonk = 0
  12. resetstats()
  13. function dobet()
  14.  
  15. if (!win) then
  16. bot+=1
  17. bott+=1
  18. bam+=1
  19. zonk+=1
  20. else
  21. bang+=1
  22. zonk = 0
  23. end
  24. if (zonk==4) then
  25. bethigh = !bethigh
  26. bang = 0
  27. zonk = 0
  28. end
  29. if bang>1 then
  30. bam = 0
  31. bang = 0
  32. end
  33. if bam>5 then
  34. bam = 0
  35. end
  36. if (bam>2)and (bang<1) then
  37. bethigh = !bethigh
  38. bang = 0
  39. bam = 0
  40. end
  41.  
  42. if (bot==4) and (balance<james) then
  43. nextbet = previousbet*2
  44. bot = 0
  45. end
  46. if (bott==6) and (balance<james) then
  47. nextbet = previousbet*2
  48. bott = 0
  49. end
  50. if (balance>james) then
  51. nextbet = basebet
  52. james = balance
  53. bang = 0
  54. bam = 0
  55. end
  56.  
  57. if balance>target then
  58. stop()
  59. end
  60. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement