[align=center]The No Focus Manifesto!!![/align]
Disclaimer: I’m in no way attempting to take credit for the idea of non-focus failover. There are greater minds that have come before me and put this together. I’m attempting to consolidate some of these ideas and document how I believe I’ve successfully put them into use with using no focus in my gameplay to this point. Enjoy!
What we’re trying to accomplish here is:
1 Button follow with leadership failover built in
1 Button synchronous firing recognizing leadership failover
No use of focus (It can be used later for something even more fun!)
The Standard Stuff:
On your main:
A "group invite" macro:
/invite toon1name
/invite toon2name
/invite toon3name
/invite toon4name
/ffa
Click this twice – first time to invite, accept invites, and then again to set loot to Free For All
How to you accept on the remainder of your toons?
/script AcceptGroup();
/script AcceptQuest();
/script AcceptTrade();
/script RetrieveCorpse();
/script RepopMe();
/script AcceptBattlefieldPort(1, 1)
DISCLAIMER: From experience, I do NOT use /script RetrieveCorpse(); and /script RepopMe(); on my slaves (shamans) – main reason is AV. Should you lose possession of an asset during the fight, you’ll end up with your guys rezzed up all over the place.
This macro will accept the invite, it will also accept sharing quests, accept rezzes, accept releasing, accept trades, and accept battleground notifications.
The MONSTER macro (AKA The Big Button):
The first thing we’re going to need is a follow macro. We’re going to toss a lot of utility in this follow macro. It may not look like much but this is the main macro for making all this work.
/target [target=Brain, nodead, help, exists]; [target=Toon2, nodead, help, exists]; [target=Toon3, nodead, help, exists]; [target=Toon4, nodead, help, exists]; [target=Brain, exists]
/follow
Translated?
/target [target=Main guy if he's alive]; [target=#2 if he's alive]; [target=#3 if he's alive]; [target=#4 if he's alive]; [target=Main guy - YOUR ALL DEAD]
/follow
This does the following.
Follows your main guy, handles your failover to a non dead toon when your main dies (all you need to do is click on the next alive toons window, click whatever button you have assigned to follow, and the macro does the rest). It also will permit follow BACK to your main guy if you’re entire team is dead. Why isn’t the 5th guy listed in there? Because if the first 4 are dead – What’s the point in targeting yourself?
Casting Macros:
You’re going to need to dmg stuff eventually – lets get down to how to do that without using focus.
/cast [target=targettarget, harm] [] Lightning Bolt
Remember that all your slaves have YOU targeted. What this does is “if your targets target is harmful, cast this spell on it” – it does NOT untarget your leader. You should be able to go through entire instances having your slaves never targeting a mob.
If in the unlikely and unfortunate event your main dies, the [] modifier will permit the REMAINDER of the slaves to single target if necessary. Since there are no specified names involved, this is perfect for failover.
Healing:
Same setup as above, change 1 aspect:
/cast [target=targettarget, help] [] Lesser Healing Wave
[] permits your brain to single target, again facilitating failover.
In Summary
The functionality of these 4 macros with a little modification (add one for earth shock, frost shock, chain lightning) and you have:
1. Group invite
2. Accept
3. Follow
4. Assist and Pew Pew
Lets explore the following scenario:
Your Brain dies – “OH NO NOT THE BRAIN!!!” – You take control of slave #1, You click your follow macr, Slaves #2,3,4 target Slave #1 based on the way the big button macro is setup.
You start to pew pew with slave #1. Based on the way the casting macros are setup – he is allowed to free fire. The rest of the slaves, targeting slave #1, fire on slave #1’s target (targettarget) without UNTARGETING slave #1.
This might seem like a laborious process, but it’s rather fast.
Brain dies
Take control of slave #X
Press your follow macro
Continue killing.
2 actions and your failover is complete.
Extras:
Heal+PewPew in 1!!
/cast [harm] [target=targettarget, harm] Lightning Bolt; [target=targettarget, help] [] Lesser Healing Wave
This is a great 2 in 1 macro – if your brain (whoever your brain may be) has a player targeted, they all heal the player – if the brain has no one targeted, they heal the brain – if they have an enemy targeted, pew pew pew
Fast Rezzing!!
Well gee darn – you wiped. The scenario is that the T5 tank or healer you brought along would really appreciate it if you rezzed him/her first. But wouldn’t it also be nice to be able to just bang a button and autorez your guys without fumbling through the pile of corpses?
We need to have A: the ability to target and rez, and B: the ability to autotarget your team members and rez.
/target [dead] [target=Team1, dead]; [target=Team2, dead]; [target=Team3, dead]; [target=Team4, dead]; [target=Team5, dead]
/cast Ancestral Spirit
Yay!! Lazy Mans Rez Macro!
Connect With Us