Advertisement
coinwalk

i think i fixed it

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