C# Class DamageTracker.Action

Combat action performed by the player
Inheritance: IDisposable
Afficher le fichier Open project: BryanHurst/Aion-DamageTracker

Méthodes publiques

Свойство Type Description
critical bool
damage int
healing int
last_tick System.DateTime
skill Skill
target string
ticks List
time System.DateTime
who Player

Méthodes publiques

Méthode Description
Action ( string _time, Player _who, int _amount, string _target, string _skill, bool _critical ) : System

Create the action performed by the player

Dispose ( ) : void

Dispose call

ToString ( ) : string

Convert all log data of action to readable string

last_tick_ToString ( ) : string

Take DOT or HOT tick and convert the last one done to a readable string

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Internal dispose method

Method Details

Action() public méthode

Create the action performed by the player
public Action ( string _time, Player _who, int _amount, string _target, string _skill, bool _critical ) : System
_time string Time action occured
_who Player Who did the action
_amount int Amount the action was for
_target string Who the action was done to
_skill string What skill did the action
_critical bool If the in-game action was critted
Résultat System

Dispose() public méthode

Dispose call
public Dispose ( ) : void
Résultat void

Dispose() protected méthode

Internal dispose method
protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

ToString() public méthode

Convert all log data of action to readable string
public ToString ( ) : string
Résultat string

last_tick_ToString() public méthode

Take DOT or HOT tick and convert the last one done to a readable string
public last_tick_ToString ( ) : string
Résultat string

Property Details

critical public_oe property

public bool critical
Résultat bool

damage public_oe property

public int damage
Résultat int

healing public_oe property

public int healing
Résultat int

last_tick public_oe property

public DateTime,System last_tick
Résultat System.DateTime

skill public_oe property

public Skill,DamageTracker skill
Résultat Skill

target public_oe property

public string target
Résultat string

ticks public_oe property

public List ticks
Résultat List

time public_oe property

public DateTime,System time
Résultat System.DateTime

who public_oe property

public Player who
Résultat Player