Redoing my Sap macro

Hi, what’s up

so I’m in the middle of rebinding my rogue as I found out that I can put modifiers on my razer naga (lifechanging moment xD).

So here’s my problem: I use 4 for sap. On a target without any modifier I have the traditional sap macro:

#showtooltip Sap
/Cleartarget
/Targetenemy
/cast Pick Pocket
/cast Sap

But now I went full on arena nerd and I created a focus/arena123 for sap as well:

#showtooltip
/use [@focus,mod:lshift,exists]Sap
/use [@arena1,mod:rshift,exists]Sap
/use [@arena2,mod:rcontrol,exists]Sap
/use [@arena3,mod:ralt,exists]Sap
/use [@target,nomod,exists]Sap
/use !stealth

Is there any possible way, to put the traditional sap macro in the place of /use [@target,nomod,exists]Sap, but only if the 4 alone is pressed? Seperating it into 3 buttons is not possible, because I use left/right shift,crtl,alt and keybinds alone don’t recognize left/right modifiers (only macros do) .

I think this one should work:

#showtooltip
/use [@focus,mod:lshift,exists]Sap
/use [@arena1,mod:rshift,exists]Sap
/use [@arena2,mod:rcontrol,exists]Sap
/use [@arena3,mod:ralt,exists]Sap
/stopmacro [mod]
/Cleartarget
/Targetenemy
/cast Pick Pocket
/cast Sap

Whoa, thanks for the super fast reply :slight_smile: !

I feel so dumb, I forget I can use [nomod] alone and for targetting commands as well haha, so I ended up using this:

#showtooltip
/use [@focus,mod:lshift,exists]Sap
/use [@arena1,mod:rshift,exists]Sap
/use [@arena2,mod:rcontrol,exists]Sap
/use [@arena3,mod:ralt,exists]Sap
/Cleartarget [nomod]
/Targetenemy [nomod]
/use [@target,nomod,exists]Sap
/use !stealth

works like a charm :3 … thanks!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.