offset tutorial

05/09/2014 10:00 fear-x#1
can anyone explain to me how to find monster values like name hp if target is selected etc. ? i only need this much basic stuff nothing else complicated :)
05/10/2014 13:49 fear-x#2
#bump ? anyone? :)
05/10/2014 16:17 Paraly#3
First get something in your target, scan for BYTE "1"
untarget it with escape, scan for BYTE "0"
repeat this steps until you find a base address they should marked as green address.
That address shows you your target status.
now for the complete target enum, calc the address you found - 0xC
so if we got "Game.dll+DA911C" - 0xC = "Game.dll+DA9110"
now just add the 0x368 as offset and you got the data struct of your current target.

here 2 examples

Target Level [BYTE]
Base: Game.dll+DA9110
Offset 1: 368
Offset 2: 42

Target Name [WCHAR32]
Base: Game.dll+DA9110
Offset 1: 368
Offset 2: 46
05/10/2014 16:46 fear-x#4
this is for NA ? the 368? or any aion? and why 0xC ? thanks !
05/10/2014 23:29 Paraly#5
Quote:
Originally Posted by fear-x View Post
this is for NA ? the 368? or any aion? and why 0xC ? thanks !
368 does work for NA and EU, but only for the 64 bit client.
If your looking for the 32 bit client you have to find the offset by yourself.
It is not that hard but I think I can't explain it that well in english :D
05/11/2014 11:36 fear-x#6
Quote:
Originally Posted by Paraly View Post
368 does work for NA and EU, but only for the 64 bit client.
If your looking for the 32 bit client you have to find the offset by yourself.
It is not that hard but I think I can't explain it that well in english :D
Ah ! i had aion launched in 32bit mode ! no wonder i couldnt get any results hahaha ! thanks ! well if you dont mind in explaining if it isnt a secret , you can try , i might just get it :D



edit : in 64bit i dont get green adress... only in 32bit .. how come? :O
05/11/2014 12:52 Paraly#7
-----------------------------------

-----------------------------------

-----------------------------------

-----------------------------------

-----------------------------------

-----------------------------------

-----------------------------------


-----------------------------------

Quote:
Originally Posted by fear-x View Post
edit : in 64bit i dont get green adress... only in 32bit .. how come? :O
maybe your running cheat engine in 32 bit mode
05/11/2014 14:25 fear-x#8
i did indeed haha bcz 64bit CE crashed my pc :D BSOD but il try again now ! THANKS FOR THE HELP !!
09/27/2015 11:35 xAxTer#9
@Paraly, It was great tutorial. +1 for you :)