Стратегия Voronka

 chance = 10
bethigh = false
basebet = 0.0005
nextbet = basebet
 
function dobet()
    print("✌️   - ProfitBet = " ..string.format("%.8f",currentprofit))
   if(win)then
      print("👁️ - Profit% = [ "..string.format("%.2f",profit/(balance-profit)*100).."% ]")
      print("☘️ - Profit = " ..string.format("%.8f",profit))
      print("😱 - Lost = " ..string.format("%.8f",lost))
      chance = 10
       nextbet = basebet
   end
   if(!win)then
       print("👁️ - Profit% = [ "..string.format("%.2f",profit/(balance-profit)*100).."% ]")
      print("😱 - Lost = " ..string.format("%.8f",lost))
          chance = 10
          nextbet=previousbet*1.12
      if (currentstreak <= -1) then
          chance = 11
          nextbet=previousbet*1.16 
      end
      if (currentstreak <= -2) then
          chance  = 12
          nextbet=previousbet*1.17
      end
      if (currentstreak <= - 3) then
          chance  = 13
          nextbet=previousbet*1.19
     end
      if (currentstreak <= -4) then
          chance  = 14
          nextbet=previousbet*1.21
      end
      if (currentstreak <= -5 ) then
          chance  = 15
          nextbet=previousbet*1.24
      end
      if (currentstreak <= -6) then
          chance  = 16
          nextbet=previousbet*1.27
      end
  if (currentstreak <= -7) then
          chance = 17
          nextbet=previousbet*1.30
      end
      if (currentstreak <= -8 ) then
          chance  = 18
          nextbet=previousbet*1.33
     end
      if (currentstreak <= -9 ) then
          chance = 19
          nextbet=previousbet*1.37 
      end
 if (currentstreak <= -10 ) then
          chance  = 20
          nextbet=previousbet*1.40
      end
      if (currentstreak <= -11) then
           chance  = 21
          nextbet=previousbet*1.43
      end
  if (currentstreak <= -12) then
           chance  = 22
          nextbet=previousbet*1.46
      end
      if (currentstreak <= -13) then
          chance  = 23
          nextbet=previousbet*1.49
     end
      if (currentstreak <= -14 ) then
          chance  = 24
          nextbet=previousbet*1.52
      end
      if (currentstreak <= -15) then
          chance = 25
          nextbet=previousbet*1.55
      end
      if (currentstreak <= -16) then
          chance  = 26
          nextbet=previousbet*1.58
     end
      if (currentstreak <= -17) then
          chance  = 27
          nextbet=previousbet*1.61
       end
      if (currentstreak <= -18) then
          chance  = 28
          nextbet=previousbet*1.64
      end
      if (currentstreak <= -19) then
          chance  = 29
          nextbet=previousbet*1.67
      end
      if (currentstreak <= -20) then
          chance  = 30
          nextbet=previousbet*1.70
      end 
   end
speedbet = 0
end

Комментариев нет:

Отправить комментарий