Chiedo aiuto per sostituire la funzione ImpostaGiocata e ImpostaInterruzioni con la funzione VerificaEsito nel seguente Script
Codice:
Sub Main()
Dim n1(5), n2(5), ru1(1), ru2(1), posta(2)
posta(2)=1
Dim matrice(8,5)
matrice(1,1)=1: matrice (1,2)=10: matrice(1,3)=11: matrice(1,4)=19: matrice(1,5)=2
matrice(2,1)=2: matrice (2,2)=20: matrice(2,3)=22: matrice(2,4)=29: matrice(2,5)=4
matrice(3,1)=3: matrice (3,2)=30: matrice(3,3)=33: matrice(3,4)=39: matrice(3,5)=6
matrice(4,1)=4: matrice (4,2)=40: matrice(4,3)=44: matrice(4,4)=49: matrice(4,5)=8
matrice(5,1)=5: matrice (5,2)=50: matrice(5,3)=55: matrice(5,4)=59: matrice(5,5)=1
matrice(6,1)=6: matrice (6,2)=60: matrice(6,3)=66: matrice(6,4)=69: matrice(6,5)=3
matrice(7,1)=7: matrice (7,2)=70: matrice(7,3)=77: matrice(7,4)=79: matrice(7,5)=5
matrice(8,1)=8: matrice (8,2)=80: matrice(8,3)=88: matrice(8,4)=89: matrice(8,5)=7
fin=EstrazioneFin
ini=3575
For es=ini To fin
AvanzamentoElab ini,fin,es
For s1= 1 To 7
For i= 1 To 5
n1(i)=matrice(s1,i)
Next
For s2= s1+1 To 8
For i= 1 To 5
n2(i)=matrice(s2,i)
Next
For r1=1 To 9
For r2=r1+1 To 10
ru1(1)=r1 : ru2(1)=r2
If SerieFreq(es,es, n1,ru1,2)>0 And SerieFreq(es,es,n2,ru2,2)>0 Then
ImpostaGiocata 1,n1,ru1,posta,200,2
ImpostaGiocata 2,n2,ru2,posta,200,2
Gioca es
ImpostaInterruzioni 1,2,2
ImpostaInterruzioni 2,1,2
End If
Next
Next
Next
Next
Next
ScriviResoconto
End Sub