
Originally Posted by
theblackdeath
im trying to make a rule for if i have paralysis to not use certain ja's the issue with what i have it is it wont ever let me use those ja's i only want these cause if i dont get specific it wont let me ranged attack or ws either any help would be greatly appreciated
.....
try this
put this in "function get_sets()"
Code:
Stop = {}
Stop.spells = S{'Berserk','Warcry','Eagle Eye Shot','Scavenge','Shadowbind','Sharpshot','Barrage','Bounty Shot','Decoy Shot','Overkill'}
Stop.spells.debuffs = S{'Amnesia','Paralysis'}
put this in "function precast(spell)" near the top
Code:
if Stop.spells[spell.english] and Stop.spells.debuffs[buffactive] then
cancel_spell()
return
end
with this if you decide to add or remove spells or buffs you can do it with ease