Advertisement
coinwalk

trial win

Sep 7th, 2019
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. chance = 69.69
  2. base = balance/50
  3. prebet = balance/50
  4. nextbet = prebet
  5. enablezz = true
  6. enablesrc = true
  7. losecount = 0
  8. betcount = 0
  9.  
  10. startbalance = balance
  11. investprofit = 0
  12.  
  13. function dobet()
  14. investprofit += currentprofit
  15. print("Total Bets/Current Lose Streak/Bet Size/Balance")
  16. print(betcount)
  17. print(losecount)
  18. print(nextbet)
  19. print(balance)
  20. if win then
  21. nextbet = prebet
  22. chance = 69.69
  23. losecount = 0
  24. betcount += 1
  25.  
  26.  
  27.  
  28. else
  29. losecount += 1
  30. betcount += 1
  31.  
  32. end
  33. if (losecount > 0) then
  34. nextbet = previousbet*4
  35. chance = 72
  36. end
  37. if (losecount > 1) then
  38. nextbet = previousbet*2.5
  39. chance = 49
  40. end
  41. if (losecount > 2) then
  42. nextbet = previousbet/4
  43. chance = 9
  44. end
  45. if (losecount > 3) then
  46. nextbet = previousbet*11
  47. chance = 80
  48. end
  49. if (losecount > 99) then
  50. nextbet = previousbet*25
  51. chance = 95
  52. end
  53. if (losecount > 99) then
  54. nextbet = previousbet*2
  55. chance = 32
  56. end
  57. if (losecount > 109) then
  58. nextbet = previousbet*1.3
  59. chance = 19
  60. end
  61. end
  62. end
  63. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement