Novità

Listato ambi vertibili

solare

Advanced Member >PLATINUM<
Ciao, chiedo agli esperti un listato che trovi ambi vertibili su due ruote sortiti in posizione isotopa e su ruote consecutive.
Faccio un esempio: In data 22/10/2020 è sortito un'ambo vertibile sulla ruota di ve 23 e nazionale 32.
 

salvo50

Advanced Member >PLATINUM PLUS<
Ciao a Tutti.

Codice:
Option Explicit
Sub Main
   Dim A,B,Es,R1,R2,P1,P2,P3,Fin,Ini,E1,E2
   Ini = EstrazioneFin - 20
   Fin = EstrazioneFin
   Scrivi Space(1) & " Ruote Consecutive, Estratti Vertibili ed Isotope " & Space(1),1,,4,,3,,1
   Scrivi Space(9) & "Chiesto da Solare - SCRIPT Salvo50" & Space(9),1,,4,,3,,1
   For Es = Ini To Fin
      AvanzamentoElab Ini,Fin,Es
      For R1 = 1 To 10
         R2 = R1 + 1
         If R2 = 11 Then R2 = 12
         For P1 = 1 To 5
            A = Estratto(Es,R1,P1)
            B = Estratto(Es,R2,P1)
            If Vert(B) = A Then
               Scrivi String(52,"-"),1
               Scrivi(" Estrazione n." & Format2(Es) & " del " & DataEstrazione(Es)),1,0
               Scrivi "  " & SiglaRuota(R1) & " ",1,0
               For P2 = 1 To 5
                  E1 = Estratto(Es,R1,P2)
                  If E1 = A Then
                     ColoreTesto 2
                  Else
                     ColoreTesto 0
                  End If
                  Scrivi Format2(E1) & " ",1,0
                  ColoreTesto 0
               Next
               Scrivi
               Scrivi(" Estrazione n." & Format2(Es) & " del " & DataEstrazione(Es)),1,0
               Scrivi "  " & SiglaRuota(R2) & " ",1,0
               For P3 = 1 To 5
                  E2 = Estratto(Es,R2,P3)
                  If E2 = B Then
                     ColoreTesto 2
                  Else
                     ColoreTesto 0
                  End If
                  Scrivi Format2(E2) & " ",1,0
                  ColoreTesto 0
               Next
               Scrivi
            End If
         Next
      Next
   Next
End Sub
 

trivellatomariotretre33

Super Member >PLATINUM<
Ciao a Tutti.

Codice:
Option Explicit
Sub Main
   Dim A,B,Es,R1,R2,P1,P2,P3,Fin,Ini,E1,E2
   Ini = EstrazioneFin - 20
   Fin = EstrazioneFin
   Scrivi Space(1) & " Ruote Consecutive, Estratti Vertibili ed Isotope " & Space(1),1,,4,,3,,1
   Scrivi Space(9) & "Chiesto da Solare - SCRIPT Salvo50" & Space(9),1,,4,,3,,1
   For Es = Ini To Fin
      AvanzamentoElab Ini,Fin,Es
      For R1 = 1 To 10
         R2 = R1 + 1
         If R2 = 11 Then R2 = 12
         For P1 = 1 To 5
            A = Estratto(Es,R1,P1)
            B = Estratto(Es,R2,P1)
            If Vert(B) = A Then
               Scrivi String(52,"-"),1
               Scrivi(" Estrazione n." & Format2(Es) & " del " & DataEstrazione(Es)),1,0
               Scrivi "  " & SiglaRuota(R1) & " ",1,0
               For P2 = 1 To 5
                  E1 = Estratto(Es,R1,P2)
                  If E1 = A Then
                     ColoreTesto 2
                  Else
                     ColoreTesto 0
                  End If
                  Scrivi Format2(E1) & " ",1,0
                  ColoreTesto 0
               Next
               Scrivi
               Scrivi(" Estrazione n." & Format2(Es) & " del " & DataEstrazione(Es)),1,0
               Scrivi "  " & SiglaRuota(R2) & " ",1,0
               For P3 = 1 To 5
                  E2 = Estratto(Es,R2,P3)
                  If E2 = B Then
                     ColoreTesto 2
                  Else
                     ColoreTesto 0
                  End If
                  Scrivi Format2(E2) & " ",1,0
                  ColoreTesto 0
               Next
               Scrivi
            End If
         Next
      Next
   Next
End Sub
Ciao Salvo50, Complimenti. Potresti fare in modo che trovi gli ambi vertibili in una sola ruota a ritroso in max 3 estrazioni anche non isotopi?
 

salvo50

Advanced Member >PLATINUM PLUS<
Per Trivellato

Codice:
Option Explicit
Sub Main
   Dim A,B,Es,Es2,R1,R2,P1,P2,P3,P4,Fin,Ini,E1,E2,Ind
   Ind = InputBox("Quanti colpi indietro da esaminare?","COLPI",3)
   Ini = EstrazioneFin - 10
   Fin = EstrazioneFin
   Scrivi Space(1) & " Ricerca indietro, Estratti Vertibili  " & Space(1),1,,4,,3,,1
   Scrivi Space(1) & " Chiesto da Trivellato - SCRIPT Salvo50" & Space(1),1,,4,,3,,1
   For Es = Ini To Fin
      AvanzamentoElab Ini,Fin,Es
      For Es2 = Es - 1 To Es - Ind Step - 1
         For R1 = 1 To 12
         If R1 = 11 Then R1 = 12
            For P1 = 1 To 5
               A = Estratto(Es,R1,P1)
               For P4 = 1 To 5
                  B = Estratto(Es2,R1,P4)
                  If Vert(A) = B Then
                     Scrivi String(52,"-"),1
                     Scrivi(" Estrazione n." & Format2(Es) & " del " & DataEstrazione(Es)),1,0
                     Scrivi "  " & SiglaRuota(R1) & " ",1,0
                     For P2 = 1 To 5
                        E1 = Estratto(Es,R1,P2)
                        If E1 = A Then
                           ColoreTesto 2
                        Else
                           ColoreTesto 0
                        End If
                        Scrivi Format2(E1) & " ",1,0
                        ColoreTesto 0
                     Next
                     Scrivi
                     Scrivi(" Estrazione n." & Format2(Es2) & " del " & DataEstrazione(Es2)),1,0
                     Scrivi "  " & SiglaRuota(R1) & " ",1,0
                     For P3 = 1 To 5
                        E2 = Estratto(Es2,R1,P3)
                        If E2 = B Then
                           ColoreTesto 2
                        Else
                           ColoreTesto 0
                        End If
                        Scrivi Format2(E2) & " ",1,0
                        ColoreTesto 0
                     Next
                     Scrivi
                  End If
               Next
            Next
         Next
      Next
   Next
End Sub
 

trivellatomariotretre33

Super Member >PLATINUM<
Per Trivellato

Codice:
Option Explicit
Sub Main
   Dim A,B,Es,Es2,R1,R2,P1,P2,P3,P4,Fin,Ini,E1,E2,Ind
   Ind = InputBox("Quanti colpi indietro da esaminare?","COLPI",3)
   Ini = EstrazioneFin - 10
   Fin = EstrazioneFin
   Scrivi Space(1) & " Ricerca indietro, Estratti Vertibili  " & Space(1),1,,4,,3,,1
   Scrivi Space(1) & " Chiesto da Trivellato - SCRIPT Salvo50" & Space(1),1,,4,,3,,1
   For Es = Ini To Fin
      AvanzamentoElab Ini,Fin,Es
      For Es2 = Es - 1 To Es - Ind Step - 1
         For R1 = 1 To 12
         If R1 = 11 Then R1 = 12
            For P1 = 1 To 5
               A = Estratto(Es,R1,P1)
               For P4 = 1 To 5
                  B = Estratto(Es2,R1,P4)
                  If Vert(A) = B Then
                     Scrivi String(52,"-"),1
                     Scrivi(" Estrazione n." & Format2(Es) & " del " & DataEstrazione(Es)),1,0
                     Scrivi "  " & SiglaRuota(R1) & " ",1,0
                     For P2 = 1 To 5
                        E1 = Estratto(Es,R1,P2)
                        If E1 = A Then
                           ColoreTesto 2
                        Else
                           ColoreTesto 0
                        End If
                        Scrivi Format2(E1) & " ",1,0
                        ColoreTesto 0
                     Next
                     Scrivi
                     Scrivi(" Estrazione n." & Format2(Es2) & " del " & DataEstrazione(Es2)),1,0
                     Scrivi "  " & SiglaRuota(R1) & " ",1,0
                     For P3 = 1 To 5
                        E2 = Estratto(Es2,R1,P3)
                        If E2 = B Then
                           ColoreTesto 2
                        Else
                           ColoreTesto 0
                        End If
                        Scrivi Format2(E2) & " ",1,0
                        ColoreTesto 0
                     Next
                     Scrivi
                  End If
               Next
            Next
         Next
      Next
   Next
End Sub
GRAZIE SALVO50 TI INVIO UNA STRETTA DI MANO CHILOMETRICA E UNA STRETTA DI MANO ANCHE A SOLARE.
 

Ultima estrazione Lotto

  • Estrazione del lotto
    giovedì 18 aprile 2024
    Bari
    13
    39
    14
    70
    78
    Cagliari
    67
    65
    03
    87
    63
    Firenze
    85
    90
    19
    67
    78
    Genova
    60
    81
    39
    33
    13
    Milano
    90
    01
    83
    11
    88
    Napoli
    18
    12
    80
    29
    19
    Palermo
    50
    83
    40
    24
    12
    Roma
    74
    48
    75
    65
    37
    Torino
    80
    46
    44
    27
    30
    Venezia
    70
    16
    72
    03
    89
    Nazionale
    89
    22
    06
    87
    13
    Estrazione Simbolotto
    Genova
    28
    21
    43
    25
    17
Alto