Hi,
I started to program a bot, here's an overview :
By doing much research on this forum, I find several pointer to 2.4.3:
uint PLAYER_VMT_pointer = 0x008C32B8;
uint UNIT_VMT_pointer = 0x008C5580;
uint CONTAINER_VMT_pointer = 0x008C3A70;
uint ITEM_VMT_pointer = 0x008C3B60;
uint M2_VMT_pointer = 0x008CFF90;
uint GAME_OBJECT_VMT_pointer = 0x008C4AF0;
uint DYNAMIC_OBJECT_VMT_pointer = 0x008C3860;
uint CORPSE_VMT_pointer = 0x008C39B8;
I found some address through "playerbase (0x00E29D2, for this I do: (playebase + 0x269C) to find the current_mana.
I try to use the pointer (PLAYER_VMT_pointer = 0x008C32Bto find information such as points of honor, so I'm doing the next operation :
honor = 0x3EB0
(playerbase + PLAYER_VMT_pointer + 0x3EB0)
This returns me an error ... I tried other transactions with the player base and PLAYER_VMT_POINTER, but without success.
I look much, read much on this forum, but I get nowhere.
A big thank you in advance to the person who will be nice and help me.![]()