1234567891011121314151617181920212223242526272829 |
- --[[
- Script Name : Spells/Scout/Rogue/Brigand/Backstab.lua
- Script Purpose : Brigand positional attack
- Script Author : Zcoretri
- Script Date : 13.March.2014
- Script Notes :
- --]]
- function precast(Caster, Target)
- -- Must be flanking or behind
- if IsFlanking(Caster, Target) then
- return true
- else
- SendMessage(Caster, "You must be flanking or behind your target to use this ability!", "yellow")
- end
- end
- function cast(Caster, Target, DmgType, MinDmg, MaxDmg, DoTDmgType, DoTDmg)
- -- Inflicts 9 - 16 melee damage on target
- SpellDamage(Target, DmgType, MinDmg, MaxDmg)
- end
- function tick(Caster, Target, DmgType, MinDmg, MaxDmg, DoTDmgType, DoTDmg)
- SpellDamage(Target, DoTDmgType, DoTDmg)
- end
- function remove(Caster, Target, DmgType, MinDmg, MaxDmg, DoTDmgType, DoTDmg)
- end
|