Add initial combat spell support

This commit is contained in:
Steve Soltys
2016-01-27 12:32:55 -05:00
committed by Gary Tierney
parent 9f47fae6a9
commit ec248a185b
9 changed files with 238 additions and 38 deletions
+4
View File
@@ -18,6 +18,10 @@ declare_attribute(:logout_timer, Time.now.to_i)
# The <i>CombatStyle</i> offset that a <i>Mob</i> is currently using.
declare_attribute(:combat_style, 0, :persistent)
##
# The <i>CombatSpell</i> offset that a <i>Mob</i> is currently using.
declare_attribute(:combat_spell, :none, :persistent)
##
# A flag indicating whether the special bar is flagged for the next attack.
declare_attribute(:using_special, false, :persistent)