Advertisement
Dreddine

serie win

Aug 14th, 2021
376
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.94 KB | None | 0 0
  1.  
  2.     enablezz=false
  3.     enablesrc=false
  4.     perte=0
  5.     casino=1
  6.     n=0
  7.  
  8.     div=100000000 --satoshi
  9.  
  10.     --balance=10000 --simulation
  11.     --SETTING--------------
  12.     bb      = (balance*0.01)/100 --basebet 1/div = 1 satoshi
  13.     pr      = bb*10 --profit
  14.     target  = profit+((balance)*30)/100  --STOP_IF_BALANCE_OVER target
  15.     limite  = profit-((balance)*20)/100  --STOP_IF_BALANCE_UNDER limite
  16.     bethigh = math.random(0,100)%2==0 --sens
  17.     -----------------------
  18.     resetseed()
  19.     counter = 0
  20.     xCH     = 1
  21.     Tchance = {50,95,90,85,80,75,70,65,60,55,nil}
  22.  
  23.  
  24.  
  25.  
  26.     function payout()
  27.     payout=1
  28.         for x=1 ,10000 ,1 do
  29.             if Tchance[x]==nil then break end
  30.             payout += ((100-casino)/Tchance[x])-1
  31.         end
  32.     end
  33.  
  34.     MRTGLLOPT=false
  35.     function increase()
  36.  
  37.         if (win) and (Tchance[xCH+1]==nil) then
  38.             xCH=0
  39.             nextbet=bb
  40.             bethigh = math.random(0,100)%2==0
  41.         end
  42.        
  43.         if !win then
  44.             nextbet=(-perte+pr)/(payout-1)
  45.             chance=Tchance[1]
  46.             xCH=1
  47.             -- print("PAYOUT= " ..payout)
  48.         end
  49.         if nextbet < bb then nextbet=bb end
  50.        
  51.        
  52.  
  53.     end
  54.  
  55. function target_et_limite()
  56.     if profit<limite then
  57.         stop()
  58.         print ("STOPLOSS REACHED!")
  59.     end
  60.     if profit >= target then
  61.         print("TARGET REACHED GG !!!")
  62.         stop()
  63.     end
  64. end
  65.  
  66.     function rstseed()
  67.     if counter==500 then
  68.     resetseed()
  69.     counter = 0
  70.     else
  71.     counter+=1
  72.     end
  73.     end
  74.  
  75. nextbet = bb
  76.     payout()
  77.     chance=Tchance[1]
  78.  
  79.     function dobet()
  80.         rstseed()
  81.         perte +=currentprofit
  82.         if perte > 0 then
  83.             perte = 0
  84.             bb    = (balance*0.01)/100
  85.         end
  86.        
  87.         increase()
  88.  
  89.         if win then
  90.             xCH+=1
  91.             chance = Tchance[xCH]
  92.         end
  93.         --  target_et_limite()
  94.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement