Advertisement
coinwalk

awesome

Nov 19th, 2019
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. chance = 95
  2. basebet = balance/8000
  3. nextbet = balance/8000
  4. bethigh = true
  5. losecount = 0
  6.  
  7. function dobet()
  8.  
  9. if (win) then
  10. chance = 95
  11. nextbet = balance/8000
  12. losecount = 0
  13. end
  14. if (!win) then
  15. losecount += 1
  16. if (losecount > 1) then
  17. nextbet = previousbet*2
  18. chance = (1/(((nextbet+(nextbet-(balance/8000)))/nextbet)))*98
  19. if chance < 49.5 then
  20. chance = 49.5 end
  21. bethigh = !bethigh
  22. print ("LOSE")
  23. print(nextbet)
  24. print(chance)
  25. print(profit)
  26. print(bets)
  27. else
  28. nextbet = previousbet*2
  29. chance = (1/((((balance/8000)+nextbet))/nextbet))*98
  30. if chance<49.5 then
  31. chance=49.5 end
  32. bethigh = !bethigh
  33. print ("LOSE")
  34. print(nextbet)
  35. print(chance)
  36. print(profit)
  37. print(bets)
  38. end
  39. end
  40.  
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement