Advertisement
Guest User

PasteToBin (Mon Jul 02 2018)

a guest
Jul 2nd, 2018
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
4CS 1.86 KB | None | 0 0
  1.               chance = 22
  2. repetirapuestas = 1
  3. limiteapuestas = 0
  4. bethigh = true
  5. nextbet = 0
  6. basebet = 0.00000002
  7. prebet = 0.00000000
  8. tbet = basebet
  9. perdidas = 0
  10. ganadas = 0
  11. acumuladas = 0
  12. strikerojo = 11
  13.  
  14. --TIPs
  15. habilitartip = true
  16. tipacumulado = 0
  17. cuentabanco = 'cc958db0-db63-4bae-b9b3-fadc399b8ca5'
  18.  
  19.  
  20. function dobet()
  21.     -- TIPS
  22.     print(string.format("ProfitBtc:\t %.8f", profit))
  23.    
  24.     if (habilitartip == true) then
  25.         if win then
  26.             tipacumulado = tipacumulado + previousbet
  27.             print('SUMO')
  28.         else
  29.             tipacumulado = tipacumulado - previousbet
  30.             print('RESTO')
  31.         end
  32.        
  33.         if (tipacumulado >= 0.00001500) then
  34.             tip(cuentabanco,0.00001001)
  35.             tipacumulado = 0
  36.             print('-----------')
  37.             print('TIPEADO!!')
  38.             print('-----------')
  39.         end
  40.     end
  41.    
  42.     -- FinTIPS
  43.    
  44.    
  45.    if (win) then
  46.         ganadas += 1
  47.         perdidas = 0
  48.         if (previousbet == 0) then
  49.             print ('Acertada!!')
  50.         else
  51.             tbet = basebet
  52.         end
  53.     else
  54.         perdidas += 1
  55.         ganadas = 0
  56.         acumuladas += 1
  57.         if (nextbet > 0) then
  58.             tbet = previousbet
  59.             nextbet = 0
  60.         end
  61.     end
  62.    
  63.  
  64.    
  65.     if (ganadas == 1 and acumuladas > strikerojo) then
  66.  
  67.         if (limiteapuestas >= repetirapuestas) then
  68.             nextbet = tbet * 2
  69.             limiteapuestas = 0
  70.         else
  71.             nextbet = tbet
  72.             limiteapuestas += 1
  73.         end
  74.     else
  75.         nextbet = 0
  76.     end
  77.    
  78.    
  79.     --print('Ganadas: '..ganadas)
  80.     --print('Perdidas: '..perdidas)
  81.     print('Acumuladas: '..acumuladas)
  82.     --print('sTRIKE: '..currentstreak)
  83.     print('')
  84.     print('previo: '..previousbet)
  85.     print('limite: '..limiteapuestas)
  86.     print('tbet: '..tbet)
  87.    
  88.     if (win) then
  89.         acumuladas = 0
  90.     end
  91. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement