Originally Posted by
billybuffalo
"Perhaps this has been asked and answered before, so I apologize for asking it again if it has. Is it possible for me to change the "activation" keys for spells? Example being; I use Vachiusa disc priest profile. It works great but I have to use the Right shift to cast the SS/POH combo. Is it possible for me to change this to the left shift button instead?"
Billy, type /nova or /novaframe and change them there. Otherwise it's a complicated process to change the defaults if you aren't comfortable with LUA. In Vachiusa's Shaman profile the keys are located in the "-- Init --" section under "Nova_CooldownCheck".
Code:
Nova_CooldownCheck = {
{ Mod = 8, Text = "HealingTideTotem", Var1 = 1 }, --IsRightShiftKeyDown
{ Mod = 1, Text = "PauseRotation", Var1 = 1 }, --IsLeftShiftKeyDown
{ Mod = 2, Text = "Chain_Heal", Var1 = 1 }, --IsLeftControlKeyDown
{ Mod = 4, Text = "DispelRaid", Var1 = 1 }, --IsLeftAltKeyDown
{ Mod = 32, Text = "HealingRain", Var1 = 1 }, --IsRightAltKeyDown
{ Mod = 16, Text = "Ascendance", Var1 = 1 } --IsRightControlKeyDown
--{ Mod = 2, Text = "RemoveFromCustomTable", Var1 = 1 }, --IsLeftControlKeyDown
--{ Mod = 4, Text = "AddToCustomTable", Var1 = 1 } --IsLeftAltKeyDown
}
The values are:
- Left Shift = 1
- Left Ctrl = 2
- Left Alt = 4
- Right Shift = 8
- Right Ctrl = 16
- Right Alt = 32
Combos end up being what ever the key values add up to. So Left Ctrl + Left Alt would be 6. Hope this helps.