Advertisement
coinwalk

eureka we have success !!!!!

Apr 12th, 2020
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. chance = 83
  2. lol = 0
  3. bethigh = false
  4. good = 20000
  5. basebet = balance/80000
  6. nextbet = basebet
  7. more = balance
  8. los = 0
  9. loss = 0
  10. six = 0
  11. function dobet()
  12.  
  13. if (win) then
  14. lol += 1
  15. chance = 83
  16. bethigh = false
  17. los = 0
  18. loss = 0
  19. else
  20. los +=1
  21. lol = 0
  22. loss+=1
  23. end
  24. if (los == 1) then
  25. nextbet = previousbet
  26. los = 0
  27. end
  28. if (lastBet.Roll < 83) then
  29. six+=1
  30. else
  31. six = 0
  32. end
  33. if balance > more and win then
  34. nextbet = balance/80000
  35. chance = 83
  36. bethigh = false
  37. more = balance
  38. end
  39. if (six==5) then
  40. bethigh = false
  41. chance = 83
  42. nextbet = previousbet*6.8
  43. lol = 0
  44. six = 0
  45. end
  46. if balance > good then
  47. stop()
  48. end
  49. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement