Novità

Script

paciola

Senior Member
Ciao a tutti.
Ringrazio in anticipo se qualcuno dei favolosi scripter che ci sono qui vorrà darmi una mano
Ho un piccolo metodo per ambata che vorrei automatizzare per vederne i risultati, in quanto a mano diventerebbe troppo lungo da fare.
Premetto che gli esiti sono molto buoni (per quello che ho potuto vedere) ma non so se è conveniente giocarlo o meno.
Passo al metodo:

In una qualsiasi estrazione:

1) Prendere il 1° estratto di Bari e verificarne la decina di appartenenza;
2) Controllare TUTTI i 1° estratti di ciascuna ruota e prendere in considerazione solo quello appartenente alla stessa decina del 1° estratto di Bari
3) Sommare i due numeri ed eventualmente fare il Fuori 90
4) Calcolare il vertibile
5) Giocare i due numeri per ambata per 5 colpi su Bari e sulla ruota in cui è stato rilevato il 2° numero.

Casi in cui tendenzialmente è meglio non giocare:

a) Se uno dei due numeri da porre in gioco è già sortito nella stessa estrazione di rilevamento su una delle due ruote, meglio non giocare;
b) Se il 1° estratto di Bari è il n. 90, meglio non giocare;
c) Se i due numeri rintracciati sono uguali (ad es. 1° di Bari 21, 1° di Venezia 21), meglio non giocare;
d) Se vengono trovati più numeri su ruote diverse appartenenti alla stessa decina del 1° estratto di Bari, meglio non giocare.

Ringrazio ancora tantissimo chi mi potrà aiutare ;)

Grazie
Davide
 
Ultima modifica:
eccoti lo script base, non tiene conto dei casi tendenzialmente non giocabili.....

Codice:
Sub Main()
    Dim es
    Dim Ini
    Dim Fin
    Dim ruote(10)
    Dim poste(10)
    Dim ee
    Dim clp
    Dim r1
    Dim r2
    Dim n(2)
    poste(1) = 1
    ee = CInt(InputBox(" Quante estrazioni vuoi controllare ? ",,"100"))
    clp = CInt(InputBox(" Per quanti colpi vuoi giocare ? ",,"9"))
    Ini = EstrazioneFin - ee
    Fin = EstrazioneFin
    co = 0
    For es = Ini To Fin
        Messaggio "elab. estr. [" &(es) & "] di " & DataEstrazione(es,1)
        Call AvanzamentoElab(Ini,Fin,es)
        a1 = Estratto(es,1,1)
        a2 = Estratto(es,2,1)
        a3 = Estratto(es,3,1)
        a4 = Estratto(es,4,1)
        a5 = Estratto(es,5,1)
        a6 = Estratto(es,6,1)
        a7 = Estratto(es,7,1)
        a8 = Estratto(es,8,1)
        a9 = Estratto(es,9,1)
        a10 = Estratto(es,10,1)
        '--------------------------
        b1 = Decina(a1)
        b2 = Decina(a2)
        b3 = Decina(a3)
        b4 = Decina(a4)
        b5 = Decina(a5)
        b6 = Decina(a6)
        b7 = Decina(a7)
        b8 = Decina(a8)
        b9 = Decina(a9)
        b10 = Decina(a10)
        '--------------------------
        ok = 0
        If b1 = b2 Then
            n(1) = Fuori90(a1 + a2)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 2
            r1 = 1
            r2 = 2
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b3 Then
            n(1) = Fuori90(a1 + a3)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 3
            r1 = 1
            r2 = 3
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b4 Then
            n(1) = Fuori90(a1 + a4)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 4
            r1 = 1
            r2 = 4
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b5 Then
            n(1) = Fuori90(a1 + a5)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 5
            r1 = 1
            r2 = 5
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b6 Then
            n(1) = Fuori90(a1 + a6)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 6
            r1 = 1
            r2 = 6
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b7 Then
            n(1) = Fuori90(a1 + a7)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 7
            r1 = 1
            r2 = 7
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b8 Then
            n(1) = Fuori90(a1 + a8)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 8
            r1 = 1
            r2 = 8
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b9 Then
            n(1) = Fuori90(a1 + a9)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 9
            r1 = 1
            r2 = 9
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b10 Then
            n(1) = Fuori90(a1 + a10)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 10
            r1 = 1
            r2 = 10
            ok = 1
        End If
        '-----------------------------------------------
        If ok = 1 Then
            co = co + 1
            Scrivi String(100,"°") & " Caso n°" & co,1
            Scrivi DataEstrazione(es) & " -- " & SiglaRuota(r1) & " - " & StringaEstratti(es,r1),1
            Scrivi DataEstrazione(es) & " -- " & SiglaRuota(r2) & " - " & StringaEstratti(es,r2) & " ** " & "  Previsione :   " & n(1) & " - " & n(2),1
            Scrivi String(100,"°"),1
            ImpostaGiocata 1,n,ruote,poste,clp,1
            Gioca es,1,,1
        End If
        If ScriptInterrotto Then Exit For
    Next
    Scrivi
    Scrivi String(100,"*")
    ColoreTesto 2
    Scrivi" casi trovati : " & co,1
    ColoreTesto 0
    Scrivi String(100," * ")
    TestoInBandaPassante(" X paciola listato by Lanfranco60 "),1,3,0
    ScriviResoconto
End Sub
 
Ultima modifica:
eccoti lo script base, non tiene conto dei casi tendenzialmente non giocabili.....

Codice:
Sub Main()
    Dim es
    Dim Ini
    Dim Fin
    Dim ruote(10)
    Dim poste(10)
    Dim ee
    Dim clp
    Dim r1
    Dim r2
    Dim n(2)
    poste(1) = 1
    ee = CInt(InputBox(" Quante estrazioni vuoi controllare ? ",,"100"))
    clp = CInt(InputBox(" Per quanti colpi vuoi giocare ? ",,"9"))
    Ini = EstrazioneFin - ee
    Fin = EstrazioneFin
    co = 0
    For es = Ini To Fin
        Messaggio "elab. estr. [" &(es) & "] di " & DataEstrazione(es,1)
        Call AvanzamentoElab(Ini,Fin,es)
        a1 = Estratto(es,1,1)
        a2 = Estratto(es,2,1)
        a3 = Estratto(es,3,1)
        a4 = Estratto(es,4,1)
        a5 = Estratto(es,5,1)
        a6 = Estratto(es,6,1)
        a7 = Estratto(es,7,1)
        a8 = Estratto(es,8,1)
        a9 = Estratto(es,9,1)
        a10 = Estratto(es,10,1)
        '--------------------------
        b1 = Decina(a1)
        b2 = Decina(a2)
        b3 = Decina(a3)
        b4 = Decina(a4)
        b5 = Decina(a5)
        b6 = Decina(a6)
        b7 = Decina(a7)
        b8 = Decina(a8)
        b9 = Decina(a9)
        b10 = Decina(a10)
        '--------------------------
        ok = 0
        If b1 = b2 Then
            n(1) = Fuori90(a1 + a2)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 2
            r1 = 1
            r2 = 2
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b3 Then
            n(1) = Fuori90(a1 + a3)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 3
            r1 = 1
            r2 = 3
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b4 Then
            n(1) = Fuori90(a1 + a4)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 4
            r1 = 1
            r2 = 4
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b5 Then
            n(1) = Fuori90(a1 + a5)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 5
            r1 = 1
            r2 = 5
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b6 Then
            n(1) = Fuori90(a1 + a6)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 6
            r1 = 1
            r2 = 6
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b7 Then
            n(1) = Fuori90(a1 + a7)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 7
            r1 = 1
            r2 = 7
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b8 Then
            n(1) = Fuori90(a1 + a8)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 8
            r1 = 1
            r2 = 8
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b9 Then
            n(1) = Fuori90(a1 + a9)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 9
            r1 = 1
            r2 = 9
            ok = 1
        End If
        '-----------------------------------------------
        If b1 = b10 Then
            n(1) = Fuori90(a1 + a10)
            n(2) = Vert(n(1))
            ruote(1) = 1
            ruote(2) = 10
            r1 = 1
            r2 = 10
            ok = 1
        End If
        '-----------------------------------------------
        If ok = 1 Then
            co = co + 1
            Scrivi String(100,"°") & " Caso n°" & co,1
            Scrivi DataEstrazione(es) & " -- " & SiglaRuota(r1) & " - " & StringaEstratti(es,r1),1
            Scrivi DataEstrazione(es) & " -- " & SiglaRuota(r2) & " - " & StringaEstratti(es,r2) & " ** " & "  Previsione :   " & n(1) & " - " & n(2),1
            Scrivi String(100,"°"),1
            ImpostaGiocata 1,n,ruote,poste,clp,1
            Gioca es,1,,1
        End If
        If ScriptInterrotto Then Exit For
    Next
    Scrivi
    Scrivi String(100,"*")
    ColoreTesto 2
    Scrivi" casi trovati : " & co,1
    ColoreTesto 0
    Scrivi String(100," * ")
    TestoInBandaPassante(" X paciola listato by Lanfranco60 "),1,3,0
    ScriviResoconto
End Sub


Grazie mille Lanfranco. Te ne sono molto grato.

Davide
 

Ultima estrazione Lotto

  • Estrazione del lotto
    lunedì 04 maggio 2026
    Bari
    22
    24
    23
    33
    09
    Cagliari
    40
    15
    22
    90
    51
    Firenze
    70
    02
    71
    41
    40
    Genova
    51
    80
    25
    69
    30
    Milano
    23
    28
    89
    02
    64
    Napoli
    16
    54
    41
    08
    56
    Palermo
    18
    25
    11
    66
    36
    Roma
    28
    07
    03
    47
    76
    Torino
    72
    24
    01
    07
    70
    Venezia
    10
    80
    17
    69
    13
    Nazionale
    06
    39
    41
    42
    38
    Estrazione Simbolotto
    Milano
    18
    31
    25
    04
    14
Indietro
Alto