Advertisement
coinwalk

manual yippie

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