Quote Originally Posted by cnj005
1) I want to enchant Windfury on my main hand and frostrbrand on my off hand. I don't want to do this with clicking and i don't want to do this with any alt or ctrl modifiers if possible. It could be done across 2 seperate macro's if neccessary. It just seems that i'm limited to only left or right clicking the icon...
It would be so doable if you could /cancelaura <weapon buff> but sadly no idea how it's done.

This might provide some ideas, though -- this is used to put sharpen stones/poisons on a specific weapon:
/script UseContainerItem (#,#);
/script PickupInventoryItem (16);

Quote Originally Posted by cnj005
2)I am currently using the following general Melee macro for my enhance shaman. I would like to find a way to incorporate Shamanistic Rage and or Bloodlust if it is up, but i'm having problems with the global cooldown:

/startattack
/use Core of Ar’kelos
/castsequence reset=combat Stormstrike, Earth Shock, Grounding Totem, Tremor Totem, Earth Shock, Stormstrike, Earth Shock, Earth Shock
Some trinks use a click, some don't. My Ancient Draenei Arcane Relic uses 2 clicks, my Vengeance of the Illidari does not. This is what I've used to compensate:
/target [target=focustarget,harm,nodead][target=party1target,harm,nodead]
/castsequence [combat] Vengeance of the Illidari, Ancient Draenei Arcane Relic
/castsequence [nocombat,harm] reset=5/combat Totem of Wrath,Lightning Bolt,null; Lightning Bolt

3) I'm using this macro for mounting on my pally... however i would like to modify it so that it will cast crusader when mounted(or mounting) and concentration when not mounted(or dismounting)

/cast [nocombat,outdoors,nomounted,flyable] Tawny Windrider
/cast [nocombat,outdoors,nomounted] Summon Charger
/dismount [mounted]
[code:1]/cast [nocombat, nomounted] Crusader Aura; [mounted] Concentration Aura;
/stopcasting
/cast [nocombat,outdoors,nomounted,flyable] Tawny Windrider; [nocombat,outdoors,nomounted] Summon Charger
/dismount [mounted][/code:1]


4) I can't seem to get the following macro's to pass:

/castrandom [target=demolock] heal
or
/cast [target=demolock] heal
Try /cast [target=demolock,help] Heal -- if worse comes to worse you can also try
/target demolock
/cast heal

As another alternative, use party leader and do [target=party1]

5) I have a general healing button for the pally, however i would like to create an additional one specifically for assist healing in panic situations. This is what i have so far however i can't get it to work because of the GCD, any suggestions?
/cast [target=party1target,help,nodead][target=party1,help,nodead] Flash of Light
Assist your party leader and heal the target, only if it's friendly. Otherwise, heal the party leader.

/assist focus
/cast [target=demolock] Blessing of Protection; [target=pally] Divine Shield;
/stopcasting
/use Ribbon of Sacrifice
/use Essence of the Martyr
/cast [help] Flash of Light; [target=tarettarget] Flash of Light
I think you've misunderstood the use of [target=

[target=<something>] is the same as /target <something>
There are no "if" statements, really, so if you wanted to /assist demolock and heal something, youc an do that, if you want to target demolock and do something, you can do that, if you want to assist demolock and cast something only if demolock is targeting himself, you can't do that.