Does anyone know how to check what set skill is equipped? Tired of going to siege on rogue and going to use Escape only to find I forgot to replace Yawaka's Blessing with it >.< I mad this so far
|
Source code
|
1
|
/run SWAP = false; if SKILLINDEX=2 then SWAP = true end; if (SWAP) then JOBINDEX=3 SKILLINDEX=6 SkillSuitFrame_GetSkill_OnClick() else JOBINDEX=3 SKILLINDEX=2 SkillSuitFrame_GetSkill_OnClick() end
|
But SKILLINDEX=2 is not what im after anyway, I need to be able to check current equipped Set Skills but have no idea how. If anyone could help me that would be great.
Edit: Never mind, figured it out.
|
Source code
|
1
|
/run SWAP = false; if SkillPlateUpdate(3) == "Unknown Choice" then SWAP = true end; if (SWAP) then JOBINDEX=3 SKILLINDEX=6 SkillSuitFrame_GetSkill_OnClick() else JOBINDEX=3 SKILLINDEX=2 SkillSuitFrame_GetSkill_OnClick() end
|