Crystal related

complicated would suit me better, i find most tuts too general and vague, i prefer to know how something works when i do it rather than just knowing that it works :P but i guess not everyone has time for such things, im just gonna write a program myself, that i know how it opperates and debug it with olly. change crap in it til i fully understand it. getting fed up of tryin to jump into the deep end with olly and edit complex crap when i dont understand fully the basics of how it opperates.
 
Okay, let me explain this meaning of "offset".

DWORD PTR SS:[EBP+47CC]

equivalent to

mystruct.some_element

The Extended Base Pointer (EBP) is a pointer to mystruct. 47CC is the number of bytes into the struct that some_element is in to the structure. K? :D:
 
yea i understand that much... what i dont understand is how you refference chunks of ingame code to offsets in asm


i guess i have a class on assembly at university so that should explain some of it :P
 
Back