Saphirro 1 Report post Posted October 9, 2016 Hi, Can anybody help me with this aura for some reason i cant get it work. Custom Trigger: function() if(IsSpellInRange("Chaos Strike", "target") == 1) then return false else return true end end Custom Untrigger: function() if(IsSpellInRange("Chaos Strike", "target") == 1) then return true else return false end end Quote Share this post Link to post Share on other sites
Gawwad 0 Report post Posted October 9, 2016 First of all simplify it by just returning the result of that check: function() return IsSpellInRange("Chaos Strike", "target") == 1 end For the untrigger just negate the previous check: function() return IsSpellInRange("Chaos Strike", "target") ~= 1 end Quote Share this post Link to post Share on other sites
Saphirro 1 Report post Posted October 9, 2016 Hi, Gawwad. I found that custom command just corrected it to my class but it didnt work. Your one is working nice tho i had to swap trigger and untrigger since i have huge out of range when i cant use it. Thanks. Quote Share this post Link to post Share on other sites