Advertisement
supersnowzy

just d seuntjie

Dec 15th, 2021
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. bets = 0
  2. nob = 50000
  3. b = balance/nob
  4. bim = (b*3)
  5. oldt = balance
  6. oldbal = balance
  7. old = balance
  8. chance = 49.5
  9. nextbet = b
  10. target = 500
  11. bethigh = true
  12. resetstats()
  13.  
  14. function dobet()
  15. bets = bets+1
  16. if (balance>=(oldt+(b*7))) then
  17. nextbet = previousbet*2
  18. bim = (nextbet*4)
  19. bets = 0
  20. end
  21. if ((balance<=(oldbal-bim)) and (bets>=3)) then
  22. nextbet = previousbet*2
  23. bim = (nextbet*4)
  24. bets = 0
  25. end
  26. if (balance>=(old+(b*10))) then
  27. b = balance/nob
  28. nextbet = b
  29. bim = (b*3)
  30. bets = 0
  31. oldt = balance
  32. oldbal = balance
  33. old = balance
  34. end
  35. if (balance>=target) then
  36. stop()
  37. end
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement