Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Development] Changing FPS to Client Main 1.04j

Joined
Mar 13, 2008
Messages
758
Reaction score
1,004
Only change it

0x0662716 -> offset

CMP DWORD PTR SS:[EBP-0x168],0x28 to

CMP DWORD PTR SS:[EBP-0x168],0x1F

i not recommend change it to less of 0x1F becouse work on 60fps and is very bad...
Without Fix.
Imagen(03_28-22_27)-0002 - [Development] Changing FPS to Client Main 1.04j - RaGEZONE Forums
With Fixed
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
May 3, 2013
Messages
6
Reaction score
1
Thx, Pinkof. Please tell me the offset for the main Se6Ep3 (zTeam)
 
Experienced Elementalist
Joined
Nov 26, 2013
Messages
270
Reaction score
90
I just don't understand now, what will changes in client with this? +10 fps? What effect I will get with this fps change?
 
Skilled Illusionist
Joined
Aug 5, 2008
Messages
377
Reaction score
33
Is this possible to do on main 1.03k?
I looked the offset from 1.04d and copied some bytes and searched on memory of the 1.03k but found nothing :/
 
Joined
Oct 29, 2007
Messages
1,289
Reaction score
1,308
Is this possible to do on main 1.03k?
I looked the offset from 1.04d and copied some bytes and searched on memory of the 1.03k but found nothing :/

because.. 1.03k jpn main.exe It's optimized on another way by compiller... sincerely: 1.04d GMO is compiled by wz using: Visual Studio 2008 and old: 1.03k jpn... using: Visual Studio 6.0 + Service Pack 4 or 5 xD

PS: Anyways here for 1.03k jpn:

Code:
CPU DisasmAddress   Hex dump          Command                                                    Comments
006020BF  |.  83F8 28       CMP EAX,28
 
Newbie Spellweaver
Joined
Apr 9, 2016
Messages
12
Reaction score
1
Hi bro, increase FPS increase CPU usage too, can reduce CPU ?
 
Last edited:
Junior Spellweaver
Joined
Dec 6, 2015
Messages
116
Reaction score
34
Can't find an offset, main Reedlan 1.04 j, can anyone help make 60 Fps ?



UPUPUP
 
Last edited:
Junior Spellweaver
Joined
Dec 8, 2007
Messages
137
Reaction score
11
It doesn't work, I found the offset for the Client 1.5.24 and changed to the suggested value and FRAPS still show me the game is capped at 25 FPS...
 
Newbie Spellweaver
Joined
Mar 9, 2017
Messages
35
Reaction score
27
Only change it

0x0662716 -> offset

CMP DWORD PTR SS:[EBP-0x168],0x28 to

CMP DWORD PTR SS:[EBP-0x168],0x1F

i not recommend change it to less of 0x1F becouse work on 60fps and is very bad...
Without Fix.

With Fixed


Thanks for the contribution Pinkof, could you share the offset for the main of MuEMU Season 6?
 
Newbie Spellweaver
Joined
Nov 11, 2015
Messages
70
Reaction score
12
Only change it0x0662716 -> offsetCMP DWORD PTR SS:[EBP-0x168],0x28 toCMP DWORD PTR SS:[EBP-0x168],0x1F i not recommend change it to less of 0x1F becouse work on 60fps and is very bad...Without Fix.With Fixed
Could you make it for Main (MuEmu S8) ?
 
Initiate Mage
Joined
Dec 15, 2023
Messages
2
Reaction score
0
SetByte(0x00662716+6, 31);

Just doing this will increase movement speed in the game, but it will bug the Ancient item options in the inventory, blinking non-stop.

I recommend using this together...

void FPS31()
{
*(DWORD*)0x77ECE8 += 14;
((void(__thiscall*)()) 0x004FFC66)();
}

SetByte(0x00662716+6, 31);
SetCompleteHook(0xE8, 0x00661A9C e FPS31);
 
Back
Top