Can this be changed to work with all classes?
/run if not InCombatLockdown() then local a=0 if IsShiftKeyDown() then a=262 elseif IsControlKeyDown() then a=263 elseif IsAltKeyDown() then a=264 end SetLootSpecialization(a) end
Can this be changed to work with all classes?
/run if not InCombatLockdown() then local a=0 if IsShiftKeyDown() then a=262 elseif IsControlKeyDown() then a=263 elseif IsAltKeyDown() then a=264 end SetLootSpecialization(a) end
/run local G=GetSpecializationInfo if not InCombatLockdown() then local s = IsShiftKeyDown() and G"3" or IsControlKeyDown() and G"2" or IsAltKeyDown() and G"1" or 0 SetLootSpecialization(s) end
Doesn’t cover Druids’ 4th spec but you could do that by getting rid of the current spec support.