[REQUEST] Radar

02/17/2010 07:06 Toxicland#1
Any chance someone could make a radar hack minitrainer?

Or possible one with just Radar and enemy tags like on the damncheaters trainer?


//
02/17/2010 21:36 chiefioso#2
NOP the conditional jump outlined in the pside txt file for the radar.
02/18/2010 05:31 Toxicland#3
Quote:
Originally Posted by chiefioso View Post
NOP the conditional jump outlined in the pside txt file for the radar.
//Enemy Radar
005ABF9E /0F85 990C0000 |JNZ planetsi.005ACC3D
8B 4C 24 1C 56 E8 04 11 00 00 84 C0 0F 85 99 0C 00 00 8A 44 24 12 84 C0 74 18 8B 06 8D 8C 24 1C
01 00 00//Btyes around
0F 85 99 0C 00 00 8A 44 24 12 84 C0 74 18 8B 06 8D 8C 24 1C 01 00 00//Direct bytes (Need to nop)


I'm guessing the bold is the conditional jump?
02/18/2010 07:57 chiefioso#4
Very good. Pop open olly, do a binary search for those bytes (0F85 990c...), and then play around with the different things you can do to the operations. I forgot how the actual thing works, but one of those conditional jumps controls whether or not a person is a friend or an enemy (naturally!)

Also notice that you did zero work to find this particular piece of code. This is at least a start, because you are learning about the assembly and the logic behind it, but ideally you would have reversed this yourself and found it too.