Advertisement
coinwalk

wage

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