Aion Offset List !

09/30/2009 20:31 kknb#16
ty
09/30/2009 21:26 emtec22#17
Quote:
Originally Posted by phade View Post
they just shifted by 0x10F8
ähm enemy base had a different shift...

game.dll+ 4F5874 new enemybase
10/04/2009 21:36 unknown661#18
can someone explain me how i can get the value of this offsets eg with autoit? i am not very good at memory reading/writing. i do not know how to use the game.dll
11/18/2009 23:05 peanutym#19
bumping this, was curious how would i tell what the new offset was using cheat engine in releation to game.dll

i have found Char x,y,z in cheat engine of aion.bin which are 0DD92700, 0B67A6C4, 2C9ACC70 respectively. But how would i be able to tell what the offsets are in relation to game.dll like posted in the OP?
11/19/2009 06:38 iam_clint#20
these are a couple of current offsets I have updated.. they are all game.dll+ the offset shown
Code:
        mana = 0xA27728
        mana_max = 0xA27724
        hp = 0xA27720
        hp_max = 0xA2771C
        exp = 0xA27710
        exp_max = 0xA27700
        casting = 0xA1D4D0
        casting_time = 0xA1D4D4
        x = 0xA1F158
        y = 0xA1F15C
        z = 0xA1F160
        rotation = 0xA1C928
        id = 0xA1CC5C
11/21/2009 16:36 Niklan#21
need offset hpmax and hp target
11/22/2009 09:54 Tropby47#22
I think there is no way to get hp and hpmax from a target, because there I think there is only a % value.
11/22/2009 10:26 slie#23
Anyone know these offset please :
Kinah
Abyss kills
Abyss Points

thank you
11/22/2009 18:34 jeunetoujour#24
There isnt a direct way of getting the HP/HPMax from a mob. but there is prediction algorithms you can use if you have a way to look at the dmg you do for each attack (with logging in aion enabled). YOu can guess by how much dmg your spell did and how much % it took off at which point you know roughly their max hp and their current hp. This is more complicated that most will try to do.
11/22/2009 21:05 slie#25
I've Found the Abyss Offset :

Code:
 
//// Kills
        AbyssKillsToday = 0xA25454,
        AbyssKillsThisWeek = 0xA25458,
        AbyssKillsLastWeek = 0xA2545C,
        AbyssKillsTotal = 0xA25460,

        // Points d'Abysse
        AbyssPointsToday = 0xA25468,
        AbyssPointsThisWeek = 0xA25470,
        AbyssPointsLastWeek = 0xA25478,
        AbyssPointsTotal = 0xA25440
03/04/2010 06:55 v22#26
Quote:
Originally Posted by nod43 View Post
Z = Game.dll+8E336C
rot = Game.dll+8E2FD0

its much easier to use the static DLL calls when referencing memory, rather then converting them.

i currently have dumped just about every offset i need for my bot (HP, MP, DP, EXP, X, Y, Z, ROT, CHAT, MOB HP, MOB XYZ, MOB TARGET, OTHER PLAYER XYZ, OTHER PLAYER TARGET, PARTY INVITE, INPARTY, PARTY MEMBER HP, PARTY MEMBER MP, PARTY MEMBER XYZ, PARTY MEMBER TARGET, MAPID, INFLIGHT, CHANNEL (!), GLOBAL SKILL COOLDOWN, SPECIFIC SKILL COOLDOWN and many many more.

right now im working on a waypoint system for my bot, however im having problems since north is -90, east is 180, south is 90 and west is 0 is making it really hard to calculate the rotation needed to go from point A to point B. anyone good with math wanna help me?

edit: ive also just scraped up a function to read contents of the users inventory which is really cool ;)

first never before seen preview of my bot,

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

could you share the above mentioned inventory list code ? I'd like to code a "cleanup" utility so it will remove useless quest items, mats etc from player's bags
03/05/2010 18:22 v22#27
could some one share pointer to skill and inventory list structs ?
04/22/2010 10:05 iamgwar#28
I am looking for the offsets for party memeber's hp and manafor version1.5.1.14, if anyone knows them.

Thanks
05/03/2010 14:23 jjoonnjj#29
Quote:
Originally Posted by Unkn0wn0x View Post
hey,
here i'll want to share the aion offsets to you. i found some today and here they are :

PHP Code:
    enum AionPlayerOffsets
    
{
        
PlayerLife 0x2F7EDDC8,
        
PlayerMana 0x2F7EDDD0,
        
PlayerDP Game.dll+8EDDD8// thanks koelkast
        
PlayerX 0x2F81FA40,
        
PlayerY 0x2F81FA48,
        
PlayerZ Game.dll+8E336C // thanks nod 43
        
PlayerRotation =  Game.dll+8E2FD0 // thanks nod 43
        
PlayerExp 0x2F7EDDB8
    

I would be glad if you add some more. ;) I will do so, too.

If you found target name / hitpoints i would be very happy if u share them. i couldnt find them now.. but i will give it a try tomorrow .;)
Can somone please tell me how to find offsets.
I know how to make the cooldown on the gliding to 0, only work with gliding not flight, i use cheat engine.
05/04/2010 03:10 jeunetoujour#30
Just use Cheat Engine and search for the value, change the value in game, then search for the new value. Process of elimination really. Or if you already know the data structs for everything like I do, you just need the main pointer to each thing and you already know the byte distances for everything else from the pointer.

Are you looking for something specific?