Hi there,
I was wondering if there is a plugin whichs copys the code olly is running over in run time.
Example code:
PUSH 06
CALL Function1
CMP EAX, 3
JE <line 7>
PUSH 0
CALL ExitProcess
CALL Function2
the thing I need as a plugin (which I really want to write myself if it does not exist yet) is that it copys the code where olly runs over.
SO it would be this if the jump was not made:
PUSH 06
CALL Function1
CMP EAX, 3
JE <line 7>
PUSH 0
CALL ExitProcess
And it would be this if the jump was made
PUSH 06
CALL Function1
CMP EAX, 3
JE <line 7>
CALL Function2
preferable that the values of the registers are commented in the same line, and if jumps are made or not.
For example in a time trial program you can use this to compare what changes are made when the time trial is ended and you get a different screen or whatever. You can then make a program to automaticly compare the code and show the difference.
Hopefully someone can help me with creating this plugin myself or that someone can give me this plugin.
Thanks in advance and for reading this,
Grtz Devoney







