• This is a reminder of 3 IMPORTANT RULES:

    1- External self-promotion websites or apps are NOT allowed here, like Discord/Twitter/Patreon/etc.

    2- Do NOT post in other languages. English-only.

    3- Crack/Warez/Piracy talk is NOT allowed.

    Breaking any of the above rules will result in your messages being deleted and you will be banned upon repetition.

    Please, stop by this thread SoccerGaming Forum Rules And Guidelines and make sure you read and understand our policies.

    Thank you!

pes 2008 camera

gilla2

Youth Team
I have the game and found that on the 'wide' camera angle there is no 1 to 9 option to change the angle. Is it thetrefore possible to alter the game i.e patch style to make a 1 to 9 option availale again as i hate playing on the regular angle it has now on all camera angles.
 

easyeasyeasy

Senior Squad
I seriously doubt there will be any patch for this.......... its yet another feature from past PES games that Nokami have taken out for reasons only known to them. :kader:
 

gilla2

Youth Team
Is it actually physically possible to edit the game code then so this feature can be made by one of the genius patch makers on this forum? (coughs)
 

juce_66

Reserve Team
It's actually quite simple to change the camera angle by modifying the system settings file (PES2008_OPTION01.bin). Here's a tiny Python program that can help you with that:

Code:
import sys, struct, binascii, msvcrt

OPTION_FILE='PES2008_OPTION01.bin'

def fixcrc(file=OPTION_FILE):
    f = open(file,"r+b")
    f.seek(0x100)
    data = f.read()
    data1 = data[:8] + '\0\0\0\0' + data[12:]
    crc = binascii.crc32(data1)
    f.seek(0x108)
    f.write(struct.pack('<i',crc))
    f.close()

def quit(code):
    sys.stdout.write('\nPress any key to exit')
    msvcrt.getch()
    sys.exit(code)

if __name__ == '__main__':
    sys.stdout.write('Enter camera angle (0-9): ')
    try: angle = int(sys.stdin.readline()[:-1])
    except ValueError: angle = -1
    if angle<0 or angle>9:
        print 'Bad angle. No changes made.'
        quit(1)

    f = open(OPTION_FILE,"r+b")
    f.seek(0x148)
    f.write(struct.pack('<i',angle)[0])
    f.close()
    fixcrc()
    print 'Camera angle succesfully changed to %d' % angle
    quit(0)

Paste this code into a text file named, for example, camera.py. Then put that file into My Documents\KONAMI\Pro Evolution Soccer 2008\save folder. Double-click on it, enter the angle you want (0-9), and that's it. (You will need Python 2.4 or higher installed on your system, which you can get here: http://python.org/download/ )
 

yoyo913

Team Captain
Woah... great stuff there

Where exactly do you change the number value of the angle?

And do you know any other cool things you can do?
 

juce_66

Reserve Team
Horatiu,

it's just one byte at offset 0x148 from the beginning of PES2008_OPTION01.bin file. (The only other thing that the program does, is the update of CRC32 checksum at offset 0x108).
 

Energia

Reserve Team
juce_66;2529345 said:
cameraTweak 1.2
Now correctly identifies non-English PES2008_OPTION01.bin files. Also added some meaningful error messages. Also, now if the checksum of system data file is incorrect, the program treats it as a WARNING, not ERROR, and will automatically correct the checksum when you hit [Save] button.

DOWNLOAD:
http://files.filefront.com/cameraTweakexe/;10361737;/fileinfo.html
http://slil.ru/25831508

my PES2008_option01.bin is not identified...

You can download it and check for it at next link:

http://dodownload.filefront.com/103...6252d72773bd13845752a3995cb6b95dc5dcaa8726f05


EDIT:

sorry now it work, excuse me, I think I used old version of your tool...
 

Energia

Reserve Team
thank's juce for yours tools!!! :)

Could you make something to unlock Replay's saving number?

There are only 20 slots for replay!!

PS: with cameraTweak 1.3 when I play in "player" camera, when I make goal and the replay start , the game crash...
 


Top