Help with rogue macros
Posted: Sat Aug 08, 2015 10:06 pm
Hey guys,
I was wondering if y'all could let me know if the follow macros (or the following types of macros) work for you. After combing through many posts I'm starting to think that these work for some but not others. I'm wondering if it has anything to do with my ping? I'm located in NA.
Intention: If I kill a target and am low on energy, I want to start my auto attack on the next target without left clicking the next target.
Problem: Spamming this macro will cause me to stop my attack
This one works, but it uses up a spot on my bar. I guess I'm just anal.
===================================================
Intention: I want to open with Garrote, but it doesn't work unless I'm behind my target. Sometimes, it's more important that I start DPSing instead of moving to the back of my target. So I want to Garrote, but if it fails, then Sinister Strike.
Problem: It attacks with Sinister Strike every time.
To troubleshoot, I took out the 3rd line. I get the error "Interrupted" if I'm behind the target. If I'm in front of the target, the error is "You must be behind your target".
==================================================
Bonus Macros for enquiring rogues who happen upon this thread.
Use: Bandage self without losing combo points. My bandages are located in slot 1 of my backpack.
Use: Spammable macro to sap the closes enemy
Thanks!
Judo
I was wondering if y'all could let me know if the follow macros (or the following types of macros) work for you. After combing through many posts I'm starting to think that these work for some but not others. I'm wondering if it has anything to do with my ping? I'm located in NA.
Intention: If I kill a target and am low on energy, I want to start my auto attack on the next target without left clicking the next target.
Problem: Spamming this macro will cause me to stop my attack
- Code: Select all
/script if (not PlayerFrame.inCombat) then AttackTarget() end
/cast Sinister Strike
This one works, but it uses up a spot on my bar. I guess I'm just anal.
- Code: Select all
/script if not IsCurrentAction(49) then UseAction(49) end;
/cast Sinister Strike
===================================================
Intention: I want to open with Garrote, but it doesn't work unless I'm behind my target. Sometimes, it's more important that I start DPSing instead of moving to the back of my target. So I want to Garrote, but if it fails, then Sinister Strike.
Problem: It attacks with Sinister Strike every time.
- Code: Select all
/script CastSpellByName("Garrote")
/script SpellStopCasting()
/script CastSpellByName("Sinister Strike")
To troubleshoot, I took out the 3rd line. I get the error "Interrupted" if I'm behind the target. If I'm in front of the target, the error is "You must be behind your target".
- Code: Select all
/script CastSpellByName("Garrote")
/script SpellStopCasting()
==================================================
Bonus Macros for enquiring rogues who happen upon this thread.
Use: Bandage self without losing combo points. My bandages are located in slot 1 of my backpack.
- Code: Select all
/script UseContainerItem(0, 1)
/script SpellTargetUnit("player")
Use: Spammable macro to sap the closes enemy
- Code: Select all
/script ClearTarget()
/script TargetNearestEnemy()
/cast sap
Thanks!
Judo