Advertisement
coinwalk

for seuntjie and 999dice

Jan 15th, 2021
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. basebet = balance/320
  2. chance = 49.5
  3. nextbet = basebet
  4. bethigh = true
  5. snowy = 0
  6. snow = 0
  7. oldbal = balance
  8. bal = balance
  9. balk = balance
  10. target = 10000
  11. bill = 0
  12.  
  13. function dobet()
  14. if !win then
  15. snow+=1
  16. snowy+=1
  17. end
  18. if (snowy>=10) and balance>=bal then
  19. nextbet = previousbet*2
  20. snowy = 0
  21. snow = 0
  22. resetseed()
  23. bal = balance
  24. end
  25. if snow>=10 and balance<balk then
  26. nextbet = previousbet*2
  27. snow = 0
  28. end
  29. if balance>=bal then
  30. bal = balance
  31. end
  32. if not (balance<(balk+(basebet*8))) and not (balance>=bal) then
  33. nextbet = previousbet
  34. end
  35. if (balance>=(oldbal+(basebet*2))) and win then
  36. nextbet = basebet
  37. oldbal = balance
  38. snow = 0
  39. snowy = 0
  40. balk = balance
  41. resetseed()
  42. end
  43. if balance>target then
  44. stop()
  45. end
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement