I was just wondering if for your Windwalker profile, could you add a thing for Touch of Karma?
I tried adding it myself just setting it to right ctrl by default, but I can't seem to get it.
I made it show up in the PQI and stuff, but it just doesn't work. I replaced the invoke xuen spell ID with Touch of Karma and it works, so I know the spell ID is correct.
I can't find anywhere in the script that would stop me from just adding another spell.
EDIT-- Nevermind I fixed it. The problem was that I was assigning it to right control, but you forgot to add a
Code:
if PQI_KuukuuWindwalker_pause_enable
So if you have the same hotkey on ToK as you do on Pause, it will pause even if you have it unchecked unless you change it to a different key.
Here's the changes just incase you wanted to copy/paste em real quick, idk lol.
Code:
if (IsMounted()) then
return true
end
if (GetSpecialization() == 1) then
if (PQI_KuukuuBrewmaster_Pause_enable and PQI: IsHotkeys(PQI_KuukuuWindwalker_Pause_key)) then
return true
end
end
if (GetSpecialization() == 3) then
if (PQI_KuukuuWindwalker_Pause_enable and PQI:IsHotkeys(PQI_KuukuuWindwalker_Pause_key)) then
return true
end
end
Code:
if (IsSpellKnown(122470)) then
if (PQI_KuukuuWindwalker_ToK_enable and PQI:IsHotkeys(PQI_KuukuuWindwalker_ToK_key) and PQR_SpellAvailable (122470) and UnitAffectingCombat("player")) then
CastSpellByName(GetSpellInfo(122470))
return true
end
end