Re: A little help about ASM
Download the Gunz PBP dump. I've posted it here a couple of times. Also GunzOld.exe and test.txt.txt combination will also help you.
Re: A little help about ASM
Ok, im going to take a look at them. Thanks T6!
EDIT: Btw i searched for Gunz PBP dump and it doenst found nothing about it. I think is cuz PBP is a small word and the searh dont use it... Also searched at google and fonud nothing.
Re: A little help about ASM
here is the PBD ^^ i dont remember who uploaded this....Hmmm well the credits go to him :p
http://rapidshare.com/files/169349381/dumps.rar
Re: A little help about ASM
GunzOld.txt and test.txt.txt will be of more help for finding the functions inside gunz. To know the parameters you'll need the dumps.
Re: A little help about ASM
Re: A little help about ASM
also, to call Classes functions you first need to get the class instance (unless these functions are static) and move the instance to ECX register, for example.
CALL ZGameClient::GetInstance
MOV ECX, EAX
CALL ZGameClient::SomeFunction
this method only works if the class has the __thiscall calling convention, (the 99% of classes functions are __thiscall ), if for example, the function has the __cdecl calling conversion you must pass the instance as parameter.
PUSH Parameter1
PUSH Parameter2
PUSH Instance
CALL Someclass::Somefunction
Re: A little help about ASM
Yay, this helped me alot! Thanks