You're doing the right kind of analysis - spotting "in Serie B there are 20 teams not 18, so 38 games not 34, in this way we still have to add two teams beyond the playoffs". Is the right kind of thinking
So to help, it's the +3C call to call for fixtures. So Serie B does it here:
00646946 |. FF52 3C CALL DWORD PTR DS:[EDX+3C]
(which is just above the patch I posted)
And that calls a function at:
Code:
00645AF0 /. 8A4424 04 MOV AL,BYTE PTR SS:[ARG.1]
Which sets up the fixtures.
What you can do is set +2C to 2 (which means you want play offs) and then jump from the playoffs code in Serie B (which is incorrect) to Serie C (which is closer) - with a jump like:
Code:
0064663F \E9 704D0000 JMP 0064B3B4
And that gets you:
But you see how complex it can get
