R
Roby
Guest
eccovi uno scriptino.. fatelo andare cosi comè adesso.
Option Explicit
Option Explicit
Codice:
Sub Main
Dim es,ini,fin,clp,eEsc,r,p,s1,s2,a,b,ok
Dim am1(10)
Dim caso,casi
Dim poste(10)
Dim rg(1)
poste(2) = 3
poste(3) = 2
poste(4) = 1
s1 = 23 '<
s2 = 41 '< le due spie, così le puoi cambiare a piacimento
eEsc = InputBox("Quante estrazioni controllo? ","N° ESTRAZIONI di CONTROLLO ",5345)
clp = InputBox("Quanti colpi di gioco? ","COLPI di GIOCO ",9)
ini = EstrazioneFin - eEsc
fin = EstrazioneFin
For es = ini To fin
For r = 1 To 12
If r = 11 Then r = 12
Messaggio "Estraz n° " &(es) & " del " & DataEstrazione(es) & " per " & NomeRuota(r)
Call AvanzamentoElab(ini,fin,es)
casi = 0
For p = 1 To 5
a = Estratto(es - 1,r,p)
b = Estratto(es,r,p)
ok = 0
If((a = s1 And b = s2))Then
ok = 1
End If
If ok = 1 Then
casi = casi + 1
am1(1) = 14
am1(2) = 57
am1(3) = 45
am1(4) = 58
am1(5) = 67
am1(6) = 48
am1(7) = 22
am1(8) = 8
am1(9) = 74
am1(10) = 33
rg(1) = r
Scrivi String(70,"-") & " caso n° " &(casi)
Scrivi DataEstrazione(es - 1) & " [ " & SiglaRuota(r) & " " & StringaEstratti(es - 1,r) & " ] trovato in pos " & p & " [ " & Format2(Estratto(es - 1,r,p)) & " ]",1,,,1
Scrivi DataEstrazione(es) & " [ " & SiglaRuota(r) & " " & StringaEstratti(es,r) & " ] trovato in pos " & p & " [ " & Format2(Estratto(es,r,p)) & " ]",1,,,1
ImpostaGiocata 1,am1,rg,poste,clp
Gioca es,False,,1
If ScriptInterrotto Then Exit For
End If
Next
Next
Next
ScriviResoconto,False
End Sub