• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

Bladestorm Fix

Lightning Blade

BETA Tester
Hello everyone, I was bored and i though i would source around the interweb when i ran over a thread on some forum board about the bladestorm bug where if you get disarmed, you're Bladestorm will still be casting, now what i did were just by simple logic put together a fast script which would remove Bladestorm if you get disarmed.

Important: This Fix works for all Classes.





Credits:

Me: for making the script

Tommy: Optimizing my cood for better performance :).
 
Last edited:

Tommy

Founder
Very nice, thanks for the release!

I did a few changes to your script (Indentation, renamed 'SpellCaster' to 'caster' and put your 'GetAura' into one if statement):

Code:
function BladestormDisarm(event, player, spell, spellcheck)
    local caster = spell:GetCaster()
    if(caster:GetAura(46924) and caster:GetAura(51722)) then
        caster:RemoveAura(46924)
    end
end 

RegisterServerHook(5, BladestormDisarm)
 

Crow

Enthusiast
It's not a bug, you're supposed to still be doing the animation, the damage is just drastically reduced, in fact, good warriors used to make macros to remove the spell aura themselves if they get disarmed.
 

Nirelz

Epic Member
It's not a bug, you're supposed to still be doing the animation, the damage is just drastically reduced, in fact, good warriors used to make macros to remove the spell aura themselves if they get disarmed.

This, dunno how it is in cata / mop but in wotlk it was like this :)
 
Top