Macros - 5 point SS/Riposte/Eviscerate
Here's a 5 point SS/Riposte/Eviscerate macro I use on my 60
Rogue.
Note that Riposte MUST BE IN ACTIONBAR1 SLOT6
/script
CN=CastSpellByName;GCP=GetComboPoints();if (GCP>=5) then CN("Eviscerate(Rank
8)");end;if (UnitMana("Player")>=10) and (IsUsableAction(6)) then
CN("Riposte");end;if UnitMana("Player")>=40 then CN("Sinister Strike(Rank
8)");end
Change GCP value, replace Eviscerate with whatever
skill you like, and change the Sinister Strike rank....also you can change the
button where Riposte is if you'd like.
Example of my 2 point S&D
Macro:
/script
CN=CastSpellByName;GCP=GetComboPoints();if (GCP>=2) then CN("Slice and
Dice(Rank 2)");end;if (UnitMana("Player")>=10) and (IsUsableAction(6)) then
CN("Riposte");end;if UnitMana("Player")>=40 then CN("Sinister Strike(Rank
8)");end
|
|