Advertisement
Dreddine

Untitled

Apr 27th, 2021
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.02 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.001)/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 = {1,90,80,70,60,50,40,30,20,10,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.            
  48.         end
  49.         if (win) then
  50.             bethigh = math.random(0,100)%2==0
  51.         end
  52.         if nextbet < bb then nextbet=bb end
  53.        
  54.         print("PAYOUT= " ..payout)
  55.  
  56.     end
  57.  
  58. function target_et_limite()
  59.     if profit<limite then
  60.         stop()
  61.         print ("STOPLOSS REACHED!")
  62.     end
  63.     if profit >= target then
  64.         print("TARGET REACHED GG !!!")
  65.         stop()
  66.     end
  67. end
  68.  
  69.     function rstseed()
  70.     if counter==500 then
  71.     resetseed()
  72.     counter = 0
  73.     else
  74.     counter+=1
  75.     end
  76.     end
  77.  
  78. nextbet = bb
  79.     payout()
  80.     chance=Tchance[1]
  81.  
  82.     function dobet()
  83.         rstseed()
  84.         perte +=currentprofit
  85.         if perte > 0 then
  86.             perte = 0
  87.             bb    = (balance*0.001)/100
  88.         end
  89.        
  90.         increase()
  91.  
  92.         if win then
  93.             xCH+=1
  94.             chance = Tchance[xCH]
  95.         end
  96.         --  target_et_limite()
  97.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement