Advertisement
Dreddine

semi-roll_2inc/dec

Jan 14th, 2021
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --[[
  2. -Joue des sequences de rolls avec une augmentation du pari si perte et diminution si gain
  3. (increase/decrease choisis très safe et pas forcément rentable).
  4. - Si la séquence est terminé en perte alors augmentation du pari sinon diminuer le pari
  5. - Si profit supérieure ou égale à 0 alors retour à la base bet
  6. -Le principe c'est une strat avec deux combinaisons de "inc dec" un très safe à l'intérieure
  7. de la série et un autre qui prends la série comme un pari unique
  8.  
  9. ]]
  10.  
  11.  
  12. --https://bit-exo.com/?ref=pierresert1
  13.  
  14. --https://www.bitsler.com/?ref=pierresert1
  15.  
  16. --https://bitvest.io?r=100548
  17.  
  18. enablezz=false
  19. enablesrc=false
  20.  
  21. ctROLL = 0
  22. bets=0
  23. perte=0
  24. perteCM=0
  25.  
  26. div=100000000
  27.  
  28. --balance=10000 --simulation
  29.  
  30. --SETTING--------------
  31. chance=89 --chance
  32. rollNBR=5 --nombre de roll par série
  33. bb=10/div --basebet
  34. target=balance*2
  35. limite=0
  36. -----------------------
  37. bbDB = bb --basebet de base
  38.  
  39. function inc_dec(inc,dec) --inc,dec en %
  40.     if win then
  41.         nextbet = previousbet*(1+(dec/100))
  42.     else
  43.         nextbet = previousbet*(1+(inc/100))
  44.     end
  45. end
  46.  
  47. function BB_INC_DEC(inc,dec) --inc,dec en %
  48.    
  49.     if perte < perteCM then
  50.         bb *= (1+(inc/100))
  51.     else
  52.         bb *= (1+(dec/100))
  53.     end
  54.     perteCM = perte
  55.  
  56. end
  57.  
  58. function target_et_limite()
  59.     if (balance-nextbet) < limite then
  60.         print("MISSION FAILLED! C'EST LE JEU SVP FAITES PAS DE BÊTISE") stop()
  61.     end
  62.     if balance >= target then
  63.         print("TARGET REACHED GG !!!") stop()
  64.     end
  65. end
  66.  
  67. function simu_printInfo()
  68.  
  69.     print("wagered= " ..wagered)
  70.     print("profit= " ..profit)
  71.     print("PERF= " ..(wagered/profit)*100 .."%")
  72.     print ("chance= " ..chance)
  73.     print("nextbet= " ..nextbet .." N° " ..bets)
  74. end
  75.  
  76. bestID,badID,pirePERTE,bestPROFIT=0,0,0,0
  77. function bestBETid()
  78.  
  79.     if currentprofit >= bestPROFIT then
  80.         bestID=lastBet.id
  81.         bestPROFIT=currentprofit
  82.     end
  83.    
  84.     if currentprofit <= pirePERTE then
  85.         badID=lastBet.id
  86.         pirePERTE=currentprofit
  87.     end
  88.    
  89.     print("PROFIT MAX= " ..bestID)
  90.     print("PERTE MAX= " ..badID)
  91.    
  92. end
  93.  
  94.  
  95. nextbet=bb
  96.  
  97. function dobet()
  98.  
  99.     perte += currentprofit
  100.     ctROLL += 1
  101.     print("N°" ..ctROLL)
  102.    
  103.     if ctROLL == rollNBR then
  104.         ctROLL = 0
  105.         BB_INC_DEC(50,-25) --en % (inc,dec)
  106.         nextbet = bb
  107.     else
  108.         inc_dec(30,-3.2) --en % (inc,dec)
  109.     end
  110.    
  111.     if nextbet < bbDB then nextbet=bbDB end
  112.    
  113.     if perte > 0 then
  114.         ctROLL = 0
  115.         bb = bbDB
  116.         nextbet = bb
  117.         perte = 0
  118.         bethigh = math.random(0,100)%2==0
  119.         perteCM = 0 --à voir plus safe avec
  120.     end
  121.    
  122.    
  123.     bestBETid()
  124.     target_et_limite()
  125.     --simu_printInfo() --simulation
  126.  
  127. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement