Advertisement
coinwalk

trial

Dec 31st, 2021
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. ebe = balance/10000
  2. b = ebe
  3. oldbal = balance
  4. f = true
  5. target = 5000
  6. old = balance
  7. j = true
  8. bim = (b*7)
  9. zim = (b*3)
  10. nextbet = ebe
  11. chance= 49.5
  12. resetstats()
  13.  
  14. function dobet()
  15. if (balance>=(oldbal+bim)) then
  16. nextbet = b*2
  17. b = b*2
  18. zim = (b*3)
  19. oldbal = balance
  20. if (j==true) then
  21. bim = (b*7)
  22. end
  23. if (j==false) then
  24. bim = (b*6)
  25. end
  26. end
  27. if (balance<=(oldbal-zim)) then
  28. nextbet = b*2
  29. b = b*2
  30. zim = (b*3)
  31. f = false
  32. oldbal = balance
  33. if (j==true) then
  34. bim = (b*7)
  35. end
  36. if (j==false) then
  37. bim = (b*6)
  38. end
  39. end
  40. if ((balance>=(old+(ebe*10))) or ((balance>=old)&&(f==false))) then
  41. ebe = balance/10000
  42. nextbet = ebe
  43. b = ebe
  44. j = false
  45. bim = (b*6)
  46. zim = (b*4)
  47. f = true
  48. oldbal = balance
  49. old = balance
  50. end
  51. if (balance>=target) then
  52. stop()
  53. end
  54. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement