Advertisement
coinwalk

good

Mar 3rd, 2021
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 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.  
  12.  
  13. function dobet()
  14. wage = wage+previousbet
  15. if (not win) and (chance==80) then
  16. nextbet = previousbet*2
  17. chance = 24
  18. end
  19. if (not win) and (chance==24) then
  20. nextbet = ((wage/3)+basebet)
  21. sux = sux+1
  22. end
  23. if (win) and (chance==24) then
  24. sux = 0
  25. chance = 80
  26. end
  27. if (sux>=5) then
  28. nextbet = wage*10
  29. chance = 80
  30. sux = 0
  31. end
  32. if (balance>=oldbal) then
  33. nextbet = basebet
  34. sux = 0
  35. wage = 0
  36. oldbal = balance
  37. end
  38. if (balance>=target) then
  39. stop()
  40. end
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement