Advertisement
coinwalk

seriously awesome

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