Novità

Cifre Isotope

BaffoBlù

Advanced Member >PLATINUM<
Cifre Isotope


la metodologia che vi presento è solo per metà (svelata)

infatti, la condizione base iniziale, è mia.
Il procedimento per calcolare la previsione no. (mia figlia...)

Quindi vi svelo solo la metà di quello che mi è consentito svelare.

la ruota base è Bari, ma nessuno vi vieta di mettere la ruota base che volete

si inizia guardando gli estratti di Bari dal 1° fino al 5° estratto

Anche qui avete libero arbitrio sulla scelta della posizione

nell'esempio che vedrete in basso, uso il 3° estratto e rispetto l'isotopia di quest'ultimo
fino alla fine per procedere oltre nella ricerca.


04.06.2024 - BA - 53.32.67.29.23

il 3° estratto è il 67

le cifre che lo compongono sono il 6 e il 7

avanzando nella ricerca della cifra isotopa nelle altre ruote

troviamo il 27, isotopo 3° estratto a cagliari

04.06.2024 - CA - 31.49.27.86.81

quindi :

Estratti Isotopi in 3° Pos. : 67 - 27

Elemento Cifra_Decina/Unità in comune : 7

eliminando per il momento la cifra in comune,
abbinando le cifre non in comune, otteniamo il 62
che con il suo vertibile 26 saranno le spie di ricerca su una terza ruota

quindi :

Spie Ricerca in Terza Ruota : 62 - 26


04.06.2024 - NZ - 60.07.62.78.38

Elemento Spia Rilevato in 3° Pos. : 62

----------------------------------------------

Numeri interessati : 67.76.27.72.62.26

*******************************

--------------------------------------------------------------------------


Queste sono le condizioni da ricercare

mentre i calcoli per procedere ulteriormente sono la parte mancante,
non ne sono io l'ideatore come detto all'inizio...

Questo è lo script base per rilevare la condizione
con inputBox per la scelta posizione

le giocate inserite sono solo un esempio con tutti i numeri interessati



Codice:
Option Explicit
Sub Main()
   Dim es,Ini,Fin,r1,r2,r3,Tm,Clp,co,ok,a,b,c,a1,a2,b1,b2,d1,d2,d3,x,pos
   Dim ruota(11)
   Dim ruote(11)
   Dim posta(10)
   Dim poste(10)
   Dim n1(6)
   posta(1) = 1
   poste(2) = 1
   ruota(1) = r1
   ruota(2) = r2
   ruota(3) = r3
   ruote(1) = 11
   pos = CInt(InputBox(" Scegli Posizione 1°-5° ",,"3"))
   Clp = CInt(InputBox(" Per quanti colpi vuoi giocare ? ",,"12"))
   Ini = 10350
   Fin = EstrazioneFin
   co = 0
   ResetTimer
   For es = Ini To Fin
      Messaggio "elab. estr. [" &(es) & "] di " & DataEstrazione(es,1)
      Call AvanzamentoElab(Ini,Fin,es)
      r1 = 1
      For r2 = r1 + 1 To 10
         For r3 = r2 + 1 To 11
            If r3 = 11 Then r3 = 12
            a = Estratto(es,r1,pos)
            b = Estratto(es,r2,pos)
            c = Estratto(es,r3,pos)
            a1 = Decina(a)
            a2 = Cadenza(a)
            b1 = Decina(b)
            b2 = Cadenza(b)
            ok = 0
            If a <> b And a1 <> a2 And b1 <> b2 Then
               If a1 = b1 Then
                  d1 =(a2 * 10)
                  d2 =(d1 + b2)
                  d3 = Vert(d2)
                  x = a1
                  If c = d2 Or c = d3 Then
                     n1(1) = a
                     n1(2) = b
                     n1(3) = c
                     n1(4) = Vert(a)
                     n1(5) = Vert(b)
                     n1(6) = Vert(c)
                     ok = 1
                  End If
               End If
               If a2 = b2 Then
                  d1 =(a1 * 10)
                  d2 =(d1 + b1)
                  d3 = Vert(d2)
                  x = a2
                  If c = d2 Or c = d3 Then
                     n1(1) = a
                     n1(2) = b
                     n1(3) = c
                     n1(4) = Vert(a)
                     n1(5) = Vert(b)
                     n1(6) = Vert(c)
                     ok = 1
                  End If
               End If
               If a1 = b2 Then
                  d1 =(a2 * 10)
                  d2 =(d1 + b1)
                  d3 = Vert(d2)
                  x = a1
                  If c = d2 Or c = d3 Then
                     n1(1) = a
                     n1(2) = b
                     n1(3) = c
                     n1(4) = Vert(a)
                     n1(5) = Vert(b)
                     n1(6) = Vert(c)
                     ok = 1
                  End If
               End If
               If a2 = b1 Then
                  d1 =(a1 * 10)
                  d2 =(d1 + b2)
                  d3 = Vert(d2)
                  x = a2
                  If c = d2 Or c = d3 Then
                     n1(1) = a
                     n1(2) = b
                     n1(3) = c
                     n1(4) = Vert(a)
                     n1(5) = Vert(b)
                     n1(6) = Vert(c)
                     ok = 1
                  End If
               End If
               If ok = 1 Then
                  ruota(1) = r1
                  ruota(2) = r2
                  ruota(3) = r3
                  ruote(1) = 11
                  co = co + 1
                  Scrivi String(100,"°") & " Caso n°" & co,1
                  Scrivi DataEstrazione(es) & " - " & SiglaRuota(r1) & " - " & StringaEstratti(es,r1),1,,,1
                  Scrivi DataEstrazione(es) & " - " & SiglaRuota(r2) & " - " & StringaEstratti(es,r2),1,,,1
                  Scrivi "Estratti Isotopi in " & pos & "° Pos. : " & Format2(a) & " - " & Format2(b),1
                  Scrivi "Elemento Cifra_Decina/Unità in comune : " & x,1,,,2,2
                  Scrivi "Spie da Ricercare in Terza Ruota : " & Format2(d2) & " - " & Format2(d3),1
                  Scrivi DataEstrazione(es) & " - " & SiglaRuota(r3) & " - " & StringaEstratti(es,r3),1,,,1
                  Scrivi "Elemento Spia Rilevato Isotopo in " & pos & "° Pos. : " & Format2(c),1
                  Scrivi String(45,"-"),1
                  Scrivi "Numeri interessati : " & Format2(n1(1)) & "." & Format2(n1(4)) & "." & Format2(n1(2)) & "." & Format2(n1(5)) & "." & Format2(n1(3)) & "." & Format2(n1(6)),1,,,1,2
                  Scrivi
                  Scrivi String(100,"°"),1
                  ImpostaGiocata 1,n1,ruota,posta,Clp',1
                  ImpostaGiocata 2,n1,ruota,poste,Clp',2
                  ImpostaGiocata 3,n1,ruote,poste,Clp',2
                  Gioca es,1,,1
               End If
            End If
         Next
      Next
   Next
   Scrivi
   Scrivi String(100,"*")
   ColoreTesto 2
   Scrivi" casi trovati : " & co,1
   ColoreTesto 0
   Scrivi String(100," * ")
   TestoInBandaPassante(" Idea e Script by BaffoBlù "),1,3,0
   ScriviResoconto,False
End Sub
 

Ultima estrazione Lotto

  • Estrazione del lotto
    sabato 05 luglio 2025
    Bari
    25
    89
    22
    77
    56
    Cagliari
    05
    87
    46
    70
    49
    Firenze
    17
    85
    66
    59
    54
    Genova
    90
    65
    07
    44
    62
    Milano
    60
    84
    26
    78
    43
    Napoli
    71
    78
    86
    76
    84
    Palermo
    23
    42
    82
    60
    88
    Roma
    86
    60
    85
    19
    01
    Torino
    59
    30
    54
    29
    60
    Venezia
    90
    20
    71
    03
    81
    Nazionale
    70
    36
    74
    27
    38
    Estrazione Simbolotto
    Nazionale
    02
    32
    40
    16
    19

Ultimi Messaggi

Indietro
Alto