HPGaugeLevel

Amadeus

The Maestro
Staff member
The "HPGaugeLevel" member of the npcinfo datatype is the means by which a script can differentiate between entity types (i.e., solo vs. elite and 1 dot vs. 2 dots, etc.) Since entity inherits npcinfo, that means you can get this information about any entity you come across. For example, just target something and type in the console "echo ${Me.Target.HPGaugeInfo}".

Here is a chart of values that I have deduced so far. Please reference http://gameguide.na.aiononline.com/aion/Targeting for information on the terminology used.

Code:
NORMAL:
1 dot       = 1
2 dots      = 3
4 dots      = 4
5 dots      = 5

ELITE:
2 dots      = 11
3 dots      = 12
5 dots      = 14

HERO:
4 dots      = 20
??          = 22

LEGENDARY:
??          = 27
The "??" indicates that the entity I tested was a "Faction Entity", so the dots were not visible.

Please reply to this thread if you have more data to add to this chart.
 
Top Bottom