Macro expert???....try and figure this one out!
As the name implies this is a hard macro to do. Basically I have 2 mages and a priest. My priest is my main. Basically I want to make a macro where when I press SHIFT,1 I cast Heal, when I press CTRL,1 I use Flash Heal, and when I simply press 1 I do a RENEW.....but I also want to include the mouseover. So my mouse has to be over the target and then I use wich ever healing spell im trying to use.
So far this is what I got figured out.
/cast [modifier:shift, button:1, target=mouseover] [modifier:shift, target=player] Heal
/cast [modifier:ctrl, button:1, target=mouseover] [modifier:ctrl, target=player] Flash Heal
/cast [button:1, target=mouseover] [target=player] Renew
RE: Macro expert???....try and figure this one out!
Quote:
Originally Posted by 'vert68',index.php?page=Thread&postID=31272#post31 272
As the name implies this is a hard macro to do. Basically I have 2 mages and a priest. My priest is my main. Basically I want to make a macro where when I press SHIFT,1 I cast Heal, when I press CTRL,1 I use Flash Heal, and when I simply press 1 I do a RENEW.....but I also want to include the mouseover. So my mouse has to be over the target and then I use wich ever healing spell im trying to use.
So far this is what I got figured out.
/cast [modifier:shift, button:1, target=mouseover] [modifier:shift, target=player] Heal
/cast [modifier:ctrl, button:1, target=mouseover] [modifier:ctrl, target=player] Flash Heal
/cast [button:1, target=mouseover] [target=player] Renew
I'm no expert, but it would look something like this:
/cast [tar=mouseover,help,mod:shift][tar=player,mod:shift] Heal; [tar=mouseover,help,mod:ctrl][tar=player,mod:ctrl] Flash Heal; [tar=mouseover,help,nomod][tar=player,nomod] Renew
RE: Macro expert???....try and figure this one out!
Quote:
Originally Posted by 'vert68',index.php?page=Thread&postID=31272#post31 272
As the name implies this is a hard macro to do. Basically I have 2 mages and a priest. My priest is my main. Basically I want to make a macro where when I press SHIFT,1 I cast Heal, when I press CTRL,1 I use Flash Heal, and when I simply press 1 I do a RENEW.....but I also want to include the mouseover. So my mouse has to be over the target and then I use wich ever healing spell im trying to use.
So far this is what I got figured out.
/cast [modifier:shift, button:1, target=mouseover] [modifier:shift, target=player] Heal
/cast [modifier:ctrl, button:1, target=mouseover] [modifier:ctrl, target=player] Flash Heal
/cast [button:1, target=mouseover] [target=player] Renew
/cast [target=mouseover, help, mod:shift] Heal
/cast [target=mouseover, help, mod:ctrl] Flash Heal
/cast [target=mouseover, help] Renew
Or
/cast [target=mouseover, help, mod:shift] Heal; [target=mouseover, help, mod:ctrl] Flash Heal; [target=mouseover, help] Renew