DamNationZ Posted February 18 Posted February 18 hello im trying to find the resolution/ fps in conquer.exe to patch it with odbg. can someone point me in right direction thank you Quote
theshadowpriest Posted February 18 Posted February 18 (edited) From epvp https://www.elitepvpers.com/forum/conquer-online-2/244444-unlock-fps.html#post2172177[QUOTE] Quote 1) Load conquer.exe in OllyDbg. 2) Right click and hover over Search for -> select all Intermodulair calls. 3) Type Sleep and double click that address 4) Patch: 00482F07 /73 0E JNB SHORT Conquer.00482F17 into: 00482F07 /EB 0E JMP SHORT Conquer.00482F17 This will unlock your fps as your treadtitle asks for. to change the limit just some higher follow step 1, 2, 3 and instead of patching the jnb to jmp you patch: 00482F02 8D51 19 LEA EDX,DWORD PTR DS:[ECX+19] 00482F0B 83C1 19 ADD ECX,19 into: 00482F02 8D51 14 LEA EDX,DWORD PTR DS:[ECX+14] 00482F0B 83C1 14 ADD ECX,14 (as you can see changed 19 into 14, you could experiment some but i suggest not to go lower then 13/14 ) Might not be exactly the same but will get you to where the limit is. You can just jump over it to unlimit it wich might see a small cpu increase or just increase it to 60dps or something. Idk how hacking the resolution into clients that don't already support resizing. Edited February 18 by theshadowpriest bb markup Quote
thecomputerist Posted February 18 Posted February 18 (edited) As the poster before me pointed out, that epvpr's post is likely your best "tutorial" for FPS, just keep in mind, it'll be trial and error. Sleep is used in different places in the client as you'll see. As far as the resolution goes, on older clients (I'm not sure on modern CO3 stuff), the supporter resolutions of 800*600 and 1024*768 is hard-coded in a lot of places within the clients Conquer.exe, so you'll need to trial and error that too. There's some values that are for the login screen, some for after it. You'll also need to keep in mind the GUI elements of the client, they're loaded in through "ini/GUI.ini" and "ini/GUI800X600.ini", which one's used depends on the Screenmode specified in: "GameSetUp.ini" And there's also some GUI elements that are hard-coded, so you'll need to figure that one too. A reference you should look at: https://www.elitepvpers.com/forum/conquer-online-2/215781-changing-co-resolution.html Edited February 18 by thecomputerist Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.