• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Development] Offsets Main 1.04j Season3Ep1

Joined
Mar 13, 2008
Messages
758
Reaction score
1,005
I am working on main s3 ep1 1.04j

i find some offsets that i want share here.

0x05F8B77
//Save LevelPoint that show on Info Character (This is for try fix bug of level points when have more of 65k)


0x0684133
//Change color of Message text when get a item.


0x0677A82
//Change color of message text sended of side server. (For me is better use Push 6 in this case).


0x69D048
Change Color of Message Error


0x0647496
Change Color of Chat Whisp



0042BBE3//Here we can change backcolor of texts but i dont know how work


Change

MOV EAX,DWORD PTR SS:[EBP+8]

to

Mov eax,0

and change

AND EAX,0FF

to

NOP

and you can see back color of post message or all message will have others colors.


IMAGES

Pinkof - [Development] Offsets Main 1.04j Season3Ep1 - RaGEZONE Forums



Pinkof - [Development] Offsets Main 1.04j Season3Ep1 - RaGEZONE Forums


More later i will upload some images

Atte: Pinkof

images added :)
 
Last edited:
Newbie Spellweaver
Joined
Feb 4, 2009
Messages
71
Reaction score
14
I've tried changing the variable of all forms of points and could not (gameserver - main).
The only way I could get was sending a new packet pro with the main points and allocating a new variable.

Being that it is easier and better, so do not do many changes in the original variables :).

PS: sorry my english.

hK7iYx1 - [Development] Offsets Main 1.04j Season3Ep1 - RaGEZONE Forums


main 1.02c.

salve points in new variable
Code:
DWORD points;

__declspec(naked) void gObjPointsFix() //new variable
{
	_asm
	{
	mov edx, points
	push edx
	push 0x77BDC30
	push ecx
	mov edi, 0x0064AADA
	jmp edi
	}
}

hook
Code:
hook_extended(0x0064AACF,                (DWORD)(&gObjPointsFix));
	func_nop(0x0064AACF+5, 6);

the rest is only sending the gameserver send a DataSend with the points and the main protocol to save the new variable
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Feb 4, 2009
Messages
71
Reaction score
14
yes friend is this way, but it's like I said, you have to make a send in gameserver sending the main points pro and allocating the amount received in this new variable.

you have to do a send so the char enters the game and GCLevelUpMsgSend
 
Junior Spellweaver
Joined
Oct 21, 2008
Messages
188
Reaction score
17
Pinkof: can you add your main.exe that you used .
thanks
 
Newbie Spellweaver
Joined
Sep 28, 2014
Messages
24
Reaction score
0
How change post color? Is yellow brillant and not change from gs
 
Back
Top