soo I'm working on learning up on certain aspects or programming as related to conquer. Well i was wondering if anyone has broken down the conquer.exe and tagged it so i can have some idea what I'm looking at..
I'm really really new to assembly though i do have some programming background..
I'm just trying to understand the more advanced commands.. soo if anyone has the conquer.exe with even just a little commentary it'd be helpful thanks
i used ollydbg 1.10
I really just want some idea of what I'm looking at in the code, I see the commands and know what they mean but not what they're doing. Ya know?
soo I'm working on learning up on certain aspects or programming as related to conquer. Well i was wondering if anyone has broken down the conquer.exe and tagged it so i can have some idea what I'm looking at..
I'm really really new to assembly though i do have some programming background..
I'm just trying to understand the more advanced commands.. soo if anyone has the conquer.exe with even just a little commentary it'd be helpful thanks
i used ollydbg 1.10
I really just want some idea of what I'm looking at in the code, I see the commands and know what they mean but not what they're doing. Ya know?
Umm dont use ollydbg, if you wanna learn about ASM your best bet is use IDA Pro Dissambler, its not free unless you wanna search for a Torrent version with the "Crack" included.
Umm dont use ollydbg, if you wanna learn about ASM your best bet is use IDA Pro Dissambler, its not free unless you wanna search for a Torrent version with the "Crack" included.
may i ask why? Is there a big difference? I mean every site i go to about assembly it's always olldbg, so it's kinda seems like it's necessary.
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...
Questions regarding Ollydbg and Assembly 04/16/2009 - CO2 Programming - 9 Replies hello guys
just wondering, is it possible to run conquer.exe from ollydbg like in a debug mode?, and if so... do you get automatically botjailed because of the timestamps?
second and easier, but I just want to confirm what I understood... if you get the message:
jump from xxxxx
under an instruction, does it really mean you got there because of a jump on xxxx position?
[Release] Assembly in C# 10/29/2008 - CO2 Programming - 7 Replies Hello,
With this .cs (C# Class) file, you can perform BASIC asm commands, such as
mov ebp, esp <-- asm.Mov_EBP_ESP();
call dword ptr ds: <-- asm.Call_DWORD_Ptr(0x00873A1F);
ret <-- asm.Ret();
Assembly in C# is NOT my creation, however, I have modified the source to enable Call's that are not 'Dword Ptr's (this was difficult because to figure out the opcode for jmp ADDY, you have to perform a math sequence on the ADDY (intTohex(((TargetCall - OldAddress) - 10), 8) due to the jmp TARGET...