Click or drag to resize

CombatActionEventArgs Constructor (Int32, Boolean, String, String, String, Dnum, DateTime, Int32, String, String)

Note: This API is now obsolete.

Event data containing info about the combat action. If subscribed to the correct event, this info can be changed before being stored as data

Namespace:  Advanced_Combat_Tracker
Assembly:  Advanced Combat Tracker (in Advanced Combat Tracker.exe) Version: 3.7.0.280
Syntax
C#
[ObsoleteAttribute]
public CombatActionEventArgs(
	int SwingType,
	bool Critical,
	string Special,
	string Attacker,
	string TheAttackType,
	Dnum Damage,
	DateTime Time,
	int TimeSorter,
	string Victim,
	string TheDamageType
)

Parameters

SwingType
Type: SystemInt32
The action type. (int)SwingTypeEnum can help you convert this.
Critical
Type: SystemBoolean
If the attack was a critical hit
Special
Type: SystemString
A "double" attack, "flurry" etc... or "None"
Attacker
Type: SystemString
The source of the action
TheAttackType
Type: SystemString
The skill name or type of action
Damage
Type: Advanced_Combat_TrackerDnum
The amount of damage
Time
Type: SystemDateTime
Time of occurance
TimeSorter
Type: SystemInt32
A variable used for stable sorting between actions with the same timestamp
Victim
Type: SystemString
The destination of the action
TheDamageType
Type: SystemString
The type of damage, such as crushing, divine, etc
See Also