Advertisement
cryptomonkey

c1bb1bets60x99strategy

Nov 30th, 2019
596
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.49 KB | None | 0 0
  1. -- c1 basebet=1sat bets=60
  2. -- on each 60bet streak loss basebet2x bets=60
  3. -- on win reset basebet bets=60
  4.  
  5.  
  6. ------------------
  7. basechance = 1
  8. basebet    = balance/50000
  9. ------------------
  10. nextbet=basebet
  11. chance=basechance
  12. ------------------
  13. bethigh=false
  14. lowhigh     = 1
  15. rollcount   = 10
  16. betcount=0
  17.  
  18. stoploss  = balance*0.90
  19. wintarget = balance*1.10
  20.  
  21. function dobet()
  22.  
  23.     -- Check Balance
  24.     if balance-(nextbet) >= wintarget and wintarget ~= 0 then
  25.             print("\n\nWinTarget Reach\n\n")
  26.             resetseed()
  27.             resetstats()
  28.             nextbet = base
  29.             stop();
  30.             ching()
  31.     end
  32.    
  33.     if balance-(nextbet) <= stoploss and stoploss ~= 0 then
  34.         print("\n\nStoploss Reach\n\n")
  35.         stop()
  36.         ching()
  37.         end
  38.  
  39. if win then
  40.     print("betcount 60 won!")
  41.     chance=basechance
  42.     nextbet=basebet
  43.     lowhigh = math.random(0,1)
  44.     betcount=0
  45.     else
  46.     betcount=betcount+1
  47.     end
  48.  
  49. if betcount==60 and !win then
  50.     print("betcount 60 busted!")
  51.     lowhigh  = math.random(0,1)
  52.     betcount = 0
  53.     nextbet  = previousbet*2
  54.     end
  55.  
  56. --sets hi/lo
  57. if (lowhigh == 0) then
  58.     bethigh = false
  59. else
  60.     bethigh = true
  61. end
  62.  
  63. --change seed every 10 rolls/bets
  64. if (rollcount == 10) then
  65.     rollcount = 0
  66.     resetseed();
  67.     print("-----------------------------------")
  68.     print("PROFIT:") print(profit)
  69.     print("-----------------------------------")
  70. else
  71.     rollcount = rollcount + 1
  72. end
  73.  
  74.  
  75. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement