Support

Nocurne

Member
``` if player.Level < 4 and player:IsSpellReadyOrCasting("Lightning Bolt") then
return player.Spells["Lightning Bolt"]:MaxRank()
end```
 

Nocurne

Member
so it should skip then move to
``` if not IsPlayerAttacking('target') then
return player.Spells[autoAttack]:MaxRank()
end```` and start auto attack
 

Nocurne

Member
try remove these lines bud

``` local targetHpPercent = target:GetHealthPercent()
if (player.Level < 4 or targetHpPercent < 20) and player:IsSpellReadyOrCasting("Lightning Bolt") then
return player.Spells["Lightning Bolt"]:MaxRank()
end```
 
also is there any way to have enhancement shamans use auto attack after pulling, idk how to add it to the pixelmaster addon in wow addons folder i looked at it and i tried to set up to addon file to run auto attack when the mob closes in to melee range but it didnt work
 
Top