Advertisement
coinwalk

woot 50

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