Thread Tools Display Modes
12-13-06, 03:01 PM   #1
ankelbyter
A Kobold Labourer
Join Date: Dec 2006
Posts: 1
Rogue help

I am jsut starting to play with the new macro's and I was trying to setup a few small ones and I need alittle help please. I am trying to make a macro that will detect if I am stealthed and if I am not. If I am stealthed the action would be Ambush. If I am not stealthed the action would try Mutilate , if there is a issue with not being behind the target It would use Sinister skrike. Is this possible witht eh current Macro restraints?
  Reply With Quote
12-13-06, 04:06 PM   #2
Flickerstreak
A Deviate Faerie Dragon
Join Date: Dec 2006
Posts: 19
I don't think a macro can decipher whether you are behind a target or not. However the ambush/backstab macro is easy:

Code:
/cast [stealth] Ambush; [nostealth] Backstab
If there were a 'behindtarget' filter (I can't find any reference to one, there probably is not) then it would look like the following:

Code:
/cast [stealth,behindtarget] Ambush; [behindtarget] Backstab; Sinister Strike
Note that you can't use fall-through "dumb logic" to perform decision making if a spell fails (not in stealth, not behind target, etc). The following DOES NOT WORK:
Code:
/cast Ambush
/cast Backstab
/cast Sinister Strike
That's probably what you were using before. I'm afraid you'll have to use one button for BS/Ambush and another for SS.

Last edited by Flickerstreak : 12-13-06 at 04:14 PM.
  Reply With Quote

WoWInterface » Developer Discussions » Lua/XML Help » Rogue help


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off