Advertisement
coinwalk

more manual

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