Advertisement
coinwalk

Untitled

Jul 22nd, 2022
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. chance = 49.5
  2. b = balance/100
  3. i = balance
  4. t = false
  5. c = bob
  6. h = (c*6.9)
  7. f = balance
  8. u = balance
  9. k = balance
  10. r = (b*2.5)
  11. joe = false
  12. nextbet = b
  13. bethigh = false
  14. target = 50000
  15. resetstats()
  16.  
  17. function dobet()
  18. if (balance>=(f+h)) then
  19. nextbet = previousbet*2
  20. c = previousbet*2
  21. i = balance
  22. h = (c*4.9)
  23. r = (c*2.5)
  24. t = true
  25. joe = false
  26. f = balance
  27. end
  28. if ((balance<=(k-r)) and (joe==false)) then
  29. nextbet = previousbet/2
  30. c = previousbet/2
  31. h = (c*6.9)
  32. r = (c*4.5)
  33. joe = true
  34. k = balance
  35. end
  36. if ((balance<=(k-r)) and (joe==true)) then
  37. nextbet = previousbet*2
  38. c = previousbet*2
  39. h = (c*6.9)
  40. r = (c*4.5)
  41. joe = false
  42. k = balance
  43. end
  44. if (balance<f) then
  45. f = balance
  46. end
  47. if (balance>k) then
  48. k = balance
  49. end
  50. if ((balance>(i+(c*2))) and (t==true) and (balance<s)) then
  51. nextbet = previousbet/2
  52. c = previousbet/2
  53. h = (c*6.9)
  54. i = balance
  55. f = balance
  56. k = balance
  57. r = (c*2.5)
  58. t = false
  59. joe = false
  60. end
  61. if ((balance>s) and (t==true) and (balance>(i+(c*2)))) then
  62. nextbet = b
  63. c = b
  64. h = (c*6.9)
  65. i = balance
  66. f = balance
  67. k = balance
  68. r = (b*2.5)
  69. t = false
  70. joe = false
  71. s = balance
  72. end
  73. if (balance>=target) then
  74. stop()
  75. end
  76. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement