Advertisement
coinwalk

filthy pig

Apr 5th, 2021
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. pig = 5000
  2. base = balance/pig
  3. basebet = balance/pig
  4. nextbet = base
  5. chance = 49.95
  6. oldbal = balance
  7. target = 50000
  8. bethigh = false
  9. filthy = false
  10. old = balance
  11. oldy = balance
  12. oldbaly = balance
  13. resetstats()
  14. function dobet()
  15. if (balance>=(oldy+(basebet*7))) then
  16. nextbet = previousbet*2
  17. basebet = nextbet
  18. oldy = balance
  19. end
  20. if balance<oldy then
  21. oldy = balance
  22. end
  23. if (balance<(old-(basebet*5))) then
  24. nextbet = previousbet*2
  25. basebet = nextbet
  26. old = balance
  27. filthy = true
  28. end
  29. if balance>=old then
  30. old = balance
  31. end
  32. if balance>=oldbal then
  33. oldbal = balance
  34. end
  35. if (balance>=oldbal) and (filthy==true) then
  36. nextbet = base
  37. basebet = base
  38. oldy = balance
  39. old = balance
  40. oldbal = balance
  41. oldbaly = balance
  42. filthy = false
  43. end
  44. if (balance>=(oldbaly+(base*11))) then
  45. nextbet = base
  46. basebet = base
  47. oldy = balance
  48. old = balance
  49. oldbal = balance
  50. filthy = false
  51. oldbaly = balance
  52. end
  53. if balance>target then
  54. stop()
  55. end
  56. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement