Advertisement
Guest User

PasteToBin (Sun Jul 01 2018)

a guest
Jul 1st, 2018
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
4CS 2.00 KB | None | 0 0
  1.               chance = 44.3
  2. bethigh = true
  3. nextbet = 0.00000001
  4. m_base = 0.00000001
  5. m_contador = 0
  6. primera = true
  7. currency='Ltc'
  8. uncambio = true
  9. habilitartip = true
  10. tipacumulado = 0
  11. cuentabanco = 'cc958db0-db63-4bae-b9b3-fadc399b8ca5'
  12.  
  13. function dobet()
  14.     print(string.format("ProfitBtc:\t %.8f", tipacumulado))
  15.    
  16.     if (habilitartip == true and currency == 'Btc') then
  17.         if (win) then
  18.             tipacumulado += previousbet
  19.         else
  20.             tipacumulado -= previousbet
  21.         end
  22.        
  23.         if (tipacumulado >= 0.00002002) then
  24.             tip(cuentabanco,0.00001001)
  25.             tipacumulado = 0
  26.             print('TIPEADO!!')
  27.         end
  28.     end
  29.    
  30.    
  31.     print (currency)
  32.     if (win) then
  33.         nextbet = m_base
  34.         m_contador = 0
  35.         primera = true
  36.         currency = 'Ltc'
  37.         uncambio = true
  38.     else
  39.         if (currentstreak <= -10) then
  40.             currency = 'Btc'
  41.    
  42.             if (nextbet == 0.00000512) then
  43.                 if (uncambio) then
  44.                     nextbet = 0.00000024
  45.                     uncambio = false
  46.                 else
  47.                     nextbet = previousbet * 2
  48.                 end
  49.             end
  50.         else
  51.             currency = 'Ltc'
  52.         end
  53.        
  54.         nextbet = nextbet * 2
  55.         if primera == true then
  56.             if m_contador == 3 or m_contador == 5 or m_contador == 8 or
  57.             m_contador == 10 or m_contador == 12 and m_contador == 15 then
  58.                 bethigh = !bethigh
  59.                 if(m_contador >= 15) then
  60.                     m_contador = 0
  61.                     primera = false
  62.                 end
  63.             end
  64.         else
  65.             if m_contador == 2 or m_contador == 5 or m_contador == 7 or
  66.                m_contador == 10 or m_contador == 13 and m_contador == 15 then
  67.                 bethigh = !bethigh
  68.                 if(m_contador >= 15) then
  69.                     m_contador = 0
  70.                     primera = true
  71.                 end
  72.             end
  73.         end
  74.     end
  75.     m_contador +=1
  76.    
  77. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement