Ingame Coordinates

04/25/2016 23:09 LastKingOfHell#1
Hey guys,

Anyone got an idea for me on how to get the ingame coordinates of my clients all the time? I know about /coordinates in chat, but i cant send /coordinates to the ingame chat on an inactive window with AutoIT and i dont want the window to be activated. Also i thought about using the ingame macro and just send F5 for /coordinates, but because of the limitations of the ingame macro system i would not be able to receive the coordinates when ever and as often as i want to. I also tried using WireShark to take a look at the packets, but unfortunately they are encrypted and it is beyond my knowledge how i could decrypt them. Therefore i would be glad if anyone of you could give me a hint on how i could achieve my aim. Thank you all very much.

Kind regards!
04/28/2016 09:49 LastKingOfHell#2
Anyone, please?
04/28/2016 10:35 luki180pl#3
Yes its possible to get that values directly from engine.exe memory.
04/28/2016 20:53 LastKingOfHell#4
what do you use to read the values, cause each cheatengine i tried gets detected. even those that i injected via dll lead to xtrap shutting down kal as soon as i try to use the debugger to find the static address.
04/29/2016 12:52 parostatek#5
DWORD BasePointer = dwFindPattern(0x401000,0x2bc000,(BYTE*)"\x8B\x4d\x 08\x0f\xb6\x51\x04\xA1\x00\x00\x00\x00\x89\x90\x00 \x00\x00\x00","xxxxxxxx????xx????");
DWORD BaseP=*(DWORD*)(BasePointer+0x08);
DWORD* pointerX = (DWORD*)BaseP;
DWORD* pointerY = (DWORD*)BaseP;
DWORD* pointerZ = (DWORD*)BaseP;

DWORD X_coordinate;
DWORD Y_coordinate;
DWORD Z_coordinate;

MemcpyEx((DWORD)&X_coordinate,(((DWORD)*pointerX)+ 0x46C8),4);
MemcpyEx((DWORD)&Y_coordinate,(((DWORD)*pointerY)+ 0x46D0),4);
MemcpyEx((DWORD)&Z_coordinate,(((DWORD)*pointerZ)+ 0x46CC),4);

make dll and rename ->bot.dll
KalClient HookBase (delete dwFindPattern pOpenDat[] !)

[Only registered and activated users can see links. Click Here To Register...]

injector (only dsound.dll) here:
[Only registered and activated users can see links. Click Here To Register...]
04/29/2016 21:17 LastKingOfHell#6
Thank you very much! I will try to get it to work
05/05/2016 11:53 LastKingOfHell#7
I got it to run with an .dll and get my coordinates printed into a console, but xtrap detects the console, any idea on that regard?
05/05/2016 13:12 parostatek#8
The console is not needed. Delete initconsole. Coordinates view in kalchat or send to external program or save to file.
05/05/2016 14:32 LastKingOfHell#9
Yeah thanks for the quick answer, just got it solved with an .ini file. Thank you very, very much for your help. Could you maybe point me in the direction where you got those patterns from? Cause i think ill be interested in those later.