Advertisement
coinwalk

kkkkk

Mar 15th, 2021
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 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 (balance<lock) then
  22. nextbet = (wage+(base))
  23. end
  24. if (balance>=lock) then
  25. nextbet = base
  26. wage = base
  27. lock = balance
  28. end
  29. if win then
  30. zim+=1
  31. bim+=1
  32. else
  33. zim = 0
  34. bim = 0
  35. end
  36. if zim>=2 and balance>=lock then
  37. nextbet = previousbet*2
  38. zim = 0
  39. end
  40. if bim>=3 and balance>=lock then
  41. nextbet = previousbet*2
  42. bim = 0
  43. end
  44. if (balance>=target) then
  45. stop()
  46. end
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement