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
    giovedì 18 settembre 2025
    Bari
    24
    27
    08
    70
    68
    Cagliari
    75
    27
    64
    20
    17
    Firenze
    53
    20
    46
    14
    39
    Genova
    38
    72
    71
    36
    65
    Milano
    24
    43
    76
    19
    26
    Napoli
    32
    70
    51
    23
    48
    Palermo
    23
    73
    55
    64
    62
    Roma
    66
    58
    15
    49
    55
    Torino
    84
    22
    38
    29
    64
    Venezia
    47
    52
    56
    35
    89
    Nazionale
    04
    49
    67
    57
    05
    Estrazione Simbolotto
    Palermo
    07
    18
    33
    28
    19
Indietro
Alto