Project

General

Profile

EQ2_ActorPowerChange (Event)

Description

The EQ2_ActorPowerChange event will fire when an actor's power changes.

Arguments

  1. string ActorID
  2. string ActorName
  3. string ActorType
  4. string OldPower
  5. string NewPower
  6. string Distance
  7. string IsInGroup
  8. string IsInRaid

Examples

 Event[EQ2_ActorPowerChange]:AttachAtom[MyAtom]
 

...

 atom MyAtom(string ActorID, string ActorName, string ActorType, string OldPower, string NewPower, string Distance, string IsInGroup, string IsInRaid)
 {
    ;do stuff
 }