What is Base Address:Quote:
can you more specific? how to search address for target offset and base address.. thank you
The starting address (beginning point) of a program or table.
base/displacement
A machine architecture that runs programs no matter where they reside in memory. Addresses in a machine language program are displacement addresses, which are relative to the beginning of the program. At runtime, the hardware adds the address of the current first byte of the program (base address) to each displacement address and derives an absolute address for execution.
All modern computers use some form of base/displacement or offset mechanism in order to to run multiple programs in memory at the same time.
relative address
A memory address that represents some distance from a starting point (base address), such as the first byte of a program or table. The absolute address is derived by adding it to the base address.
Tip to Find Target
You have to find a memory address that receive the NPC ID. To do that first you need to know the ID of monster NPC and look for the memory address that receives this value when you target the monster.
Example how NPC id likes: 801040F01, 801040F02