Hi peoples , I have a doubt , well , my doubt is in assembly ,I'm studying assembly so I wanted to know if it ''function'' was found ready in OllyDBG or someone did it step by step ? Will be that it was found ready in OllyDBG/IDA/Dasm Or someone that understand of assembly , made it ?
yes, it was assembled by someone. in general, eax is not used to obtain pointers like here
(mov eax, BaseAddr
mov eax, dword ptr [eax]
mov eax, dword ptr [eax+$1C])
also, pushad and popad are never generated by compilers used for pw client/server, so whenever you see either of those it was manually assembled.
Assembly 01/18/2011 - CO2 Programming - 5 Replies Well, I really want to learn assembly. I've already read some guides, but I want to be good at it. I understand only less asm. Is there any good guides for learning it?
can/how do u go from assembly code to hex? 10/15/2009 - Dekaron - 7 Replies im trying to find an offset and assembly scan takes forever, could someone tell me if its possible to go from the assembly code to the hex value, if so how do you do it?
cmp dword ptr ,13 ----> 83 78 08 13 0F 84
Assembly Help 08/19/2009 - Dekaron - 8 Replies I am still trying to learn assembly, but I'm getting better. I found a tut that looked really promising (by Lela or something), but it was all about cracking registration things and such, which doesn't really help me with 2Moons. So if anybody has a tut that is more guided to game hacking, a link would be greatly appreciated.
Anyway, here is what I need help with. Here is the part of the code I'm looking at:
http://i221.photobucket.com/albums/dd193/sachamo5 12/Olly1.jpg
What I need...