Advertisement
coinwalk

dunno

Dec 18th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1.  
  2.  
  3. --over 69 [c30%] and multi 1.9 [190%] on 3rd consecutive loss
  4. --over/inder possible?
  5. --reset to basebet on win
  6.  
  7.  
  8.  
  9. chance = 30
  10. div = 1000000
  11. base = balance/div
  12.  
  13. bethigh=false
  14. lowhigh = 1
  15. rollcount = 10
  16. losestreak = 0
  17.  
  18. print("-------------------------------------------")
  19. print(" BALANCE: ") print(balance)
  20. print("-------------------------------------------")
  21. resetseed(); resetseed(); resetseed(); resetseed();
  22. resetseed(); resetseed(); resetseed(); resetseed();
  23. resetstats();resetstats();resetstats();
  24. nextbet=0.000000001
  25. resetseed();resetseed();resetseed();
  26. resetseed(); resetseed(); resetseed(); resetseed();
  27. resetseed(); resetseed(); resetseed(); resetseed();
  28.  
  29. stoploss = balance*0.97
  30. wintarget = balance*1.04
  31.  
  32. function dobet()
  33.  
  34. -- Check Balance
  35. if balance-(nextbet) >= wintarget and wintarget ~= 0 then
  36. print("\n\nWinTarget Reach\n\n")
  37. print("Profit: " .. string.format("%9.8f", profit) )
  38. resetseed()
  39. resetstats()
  40. nextbet = base
  41. stop();
  42. ching()
  43. end
  44.  
  45. if balance-(nextbet) <= stoploss and stoploss ~= 0 then
  46. print("\n\nStoploss Reach\n\n")
  47. print("Profit: " .. string.format("%9.8f", profit) )
  48. stop()
  49. ching()
  50. end
  51.  
  52. if win then
  53. chance = 30
  54. nextbet = balance/div
  55. lowhigh = math.random(0,1)
  56. losestreak = 0
  57. else
  58. losestreak = losestreak + 1
  59. end
  60.  
  61. if !win and (losestreak == 3) then
  62. nextbet = previousbet*1.90
  63. losestreak = losestreak - 1
  64. end
  65.  
  66. if (lowhigh == 0) then
  67. bethigh = false
  68. else
  69. bethigh = true
  70. end
  71.  
  72. --change seed every 10 rolls/bets
  73. if (rollcount == 10) then
  74. rollcount = 0
  75. resetseed();
  76. print("---------------------------------------------------------------------------------------------")
  77. print("Profit: " .. string.format("%9.8f", profit) )
  78. print("---------------------------------------------------------------------------------------------")
  79. else
  80. rollcount = rollcount + 1
  81. end
  82.  
  83.  
  84. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement