Advertisement
coinwalk

coollloi

Mar 15th, 2021
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. lol = 50000
  2. basebet = balance/lol
  3. base = balance/lol
  4. chance = 49.5
  5. nextbet = basebet
  6. bethigh = false
  7. sod = balance
  8. oldbalance = balance
  9. old = balance
  10. target = 50000
  11. lock = balance
  12. old = balance
  13. wage = base
  14. zim = 0
  15. bim = 0
  16. resetstats()
  17.  
  18.  
  19. function dobet()
  20. wage = wage+previousbet
  21. if win then
  22. zim+=1
  23. bim+=1
  24. dom = 0
  25. else
  26. zim = 0
  27. dom+=1
  28. bim = 0
  29. end
  30. if (balance<lock) and dom<=4 then
  31. nextbet = (wage+(base))
  32. end
  33. if (balance<lock) and dom>4 then
  34. nextbet = previousbet*2
  35. end
  36. if (balance>=lock) then
  37. nextbet = base
  38. wage = base
  39. lock = balance
  40. end
  41. if zim>=2 and balance>=lock then
  42. nextbet = previousbet*2
  43. zim = 0
  44. end
  45. if bim>=3 and balance>=lock then
  46. nextbet = previousbet*2
  47. bim = 0
  48. end
  49. if (balance>=target) then
  50. stop()
  51. end
  52. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement