Close
Page 4 of 6 FirstFirst ... 2 3 4 5 6 LastLast
Showing results 31 to 40 of 51
  1. #31

    Default

    thanks for that very interesting - I like your use of targetexact. I was thinking about your point earlier of losing the targetnearestenemy ability and realised later that's what targetlasttarget is for - I use that in my chain heal macro so could easily use it to incorporate your use of targetexact without changing the targettarget approach.

    You mention earlier that a focus based approach front loads strategic targeting so you can just mash the dps key without having to conentrate on whether you have the right target and it Just Works(tm) and that targettarget backloads it and so it has to be constantly monitored, not so. Whether it's backloaded or frontloaded the effect is the same and the playstyle is the same, I just mash my dps key and don't think about what my team is targeting because I know they're targeting my target. Once a leader is set to target it stays targeted

  2. #32
    Member Ughmahedhurtz's Avatar
    Join Date
    Jul 2007
    Location
    North of The Wall, South of The Line
    Posts
    7169

    Default

    Disregard that healing macro. It's one I've been playing with lately and I guess I've just not hit the failing case until last night. It basically never resets when it gets to "null" which surprised me. Ah well, back to Ye Olde Drawring Boarde. :P You get the idea I'm going for, though.

    With regards to the targeting stuff, if you're targeting your main with a separate keypress and then relying on that target being static throughout the fight, you might be surprised when you hit those cases where you lose target (like MC's, certain stuns, the fights where you fight your teammates, etc.). I suppose it's trivial to press the "retarget my main" key but it is one less thing to have to concentrate on when the Fit hits the Shan.

    Cheers,
    Ugh
    Now playing: WoW (Garona)

  3. #33

    Default

    Quote Originally Posted by 'Ughmahedhurtz',index.php?page=Thread&postID=20585 5#post205855
    Disregard that healing macro. It's one I've been playing with lately and I guess I've just not hit the failing case until last night. It basically never resets when it gets to "null" which surprised me. Ah well, back to Ye Olde Drawring Boarde. :P You get the idea I'm going for, though.

    With regards to the targeting stuff, if you're targeting your main with a separate keypress and then relying on that target being static throughout the fight, you might be surprised when you hit those cases where you lose target (like MC's, certain stuns, the fights where you fight your teammates, etc.). I suppose it's trivial to press the "retarget my main" key but it is one less thing to have to concentrate on when the Fit hits the Shan.

    Cheers,
    Ugh
    ahhh but! if my main toon get's mc'd I just hit my Switch Brain (tm) key and everyone targets the new brain/the pip is swapped and the Fight Goes On(tm) and it's super quick.

    also checked my melee macro on the target dummy in orgrimmar - it works

    I'm at work so can't post the macro but this will give a general idea, I use /click with castsequences a fair bit and noticed that on the new brain that it didn't cast any spells whereas the others would (my main dying first is a rare event - it's usually the shammies >.<), the castsequence looks a bit like this:
    Code:
    /castsequence [target=targettarget] reset=combat flame shock, lava burst,,,,,,,,,,,
    I've changed it to:
    Code:
    /castsequence [target=targettarget] [target=target] reset=combat flame shock, lava burst,,,,,,,,,,,
    and it now fires when something is targeted by this toon and when targeting another toon's target

  4. #34

    Default

    *sigh*

    I wrote the Manifesto.

    The primary goal of No Focus for me was to free up focus for use elsewhere. It was due to the power of focus that I wanted to NOT use it unless absolutely necessary. I wanted to leave it available.

    As far as the complexity, I've ran both focus and no focus, and once you get the basic sets of macros put together, there's really no difference. I've never noticed an increased complexity of one compared to the other.

    As far as "making sure you have the right target targetted" - That was never an issue, I'm actually curious why anyone would think actually having something targetted would be an issue.
    Resto Shaman + 4 DK's, work in progress...
    ------------------
    Teezy/Jaqblaq @ Stormrage
    Emeritus Guardian and Keeper of the no focus manifesto.

  5. #35

    Default

    Quote Originally Posted by 'Zzyzxx71',index.php?page=Thread&postID=205964#pos t205964
    *sigh*

    I wrote the Manifesto.

    The primary goal of No Focus for me was to free up focus for use elsewhere. It was due to the power of focus that I wanted to NOT use it unless absolutely necessary. I wanted to leave it available.

    As far as the complexity, I've ran both focus and no focus, and once you get the basic sets of macros put together, there's really no difference. I've never noticed an increased complexity of one compared to the other.

    As far as "making sure you have the right target targetted" - That was never an issue, I'm actually curious why anyone would think actually having something targetted would be an issue.
    /agree and thank you for writing it

    it's the same, all we're doing is switching focus for target and focustarget for targettarget, in fact you could probably grab all your macros and perform a mass replace in notepad and carry on as normal - there is no extra level of complexity. Also I think ppl have got the wrong idea, this approach isn't saying don't use focus at all, it's saying lets leave focus for something else as the target approach does not preclude the use of focus. I think ppl got their knickers in a twist due to my flame inspiring thread title which was the purpose btw , nothing better than a lively discussion lol.

    A point made earlier in this thread was that this approach would be no good for melee, please could someone explain this as in my limited testing I've found no issues with melee, however this was only last night on the training dummies and not on real mobs.

  6. #36

    Default

    Just a little input on some macros:
    Quote Originally Posted by 'Simulacra',index.php?page=Thread&postID=205733#po st205733
    here's a heal self macro:

    Code:
    /stopcasting
    /cast [target=player] Lesser Healing Wave
    /targetlasttarget
    The /cast [target=...] line won't change your target, so the /targetlasttarget line is unnecessary, and (worst case) will have you targetting the wrong mob after the heal. I suspect that, in practice, your last target is already dead, so you've not noticed, but I believe it's wrong nonetheless.
    Quote Originally Posted by 'Simulacra',index.php?page=Thread&postID=205733#po st205733
    here's a heal the named macro - this one was for thrall in some quest in CoT I think - not sure
    Code:
    /stopcasting
    /target [target=Thrall]
    /cast  lesser healing wave
    /targetlasttarget
    Why not just "/target Thrall", instead of "/target [target=Thrall]" ?
    Even simpler:
    Code:
    /stopcasting
    /cast [target=Thrall] Lesser Healing Wave
    Quote Originally Posted by 'Simulacra',index.php?page=Thread&postID=205733#po st205733
    Code:
    /follow target
    /assist [target=target, exists]
    /startattack
    "/assist [exists]" should do the same, as "/assist [target=target,exists]" but with less characters.

  7. #37

    Default

    thanks ddm - you are quite correct, the target=self does not overwrite target and I'll remove that but I think you're not getting targettarget - my target is my main so I'm hoping he won't be dead lol, my target will definitely NOT be some dead mob because the targettarget approach never targets anything except a friendly, the worst case is the target is another member of the group if I happened to have pip swapped at some point. The rest are just force of habit. Thx for the tips

  8. #38

    Default

    I think you guys are also overlooking that using focus can be used for unconventional teams as well.

    For example, when I ran 4 warlocks + 1 priest through instances I would have each felguard tanking a different target. Before I pulled I would simply select a target for felguard 1 to tank and have him set his focus to it. Repeat for felguard 2 and 3. I would then hit "/petattack" and they would all charge in at once, tanking their respective targets.

    This setup is simply not possible using the typical focus-based grouping. I've been using the target-target ever since I started and have had no problems with it. It gives me all the same features of the focus-based approach, except I can use focus for things if I need to.
    [align=center]March of Souls, Illidan (US)
    [/align][align=center]Warrior, Warlock x 3, Priest
    [/align][align=center][----=----|----=----|----=----|----=----|----=----|----=----|----=----|----=----X]
    [/align]

  9. #39

    Default

    My hunters and locks would disagree that you can't split up mobs to off tank. I select the mob on my alt (yeah, select on my main and push a key for the alt to target the mob) and then send in pets with just a /petattack command. Guess what, every pet goes to a different target, no matter who/what I have focused. They only switch if I use a /assist. Again, no matter what I have focused, you can send pets (or chars) at different mobs. Just don't /assist and they stay on that mob. And if you want you can still attack your main's target while you are targeting a different mob with clever use of [options].

  10. #40

    Default

    Quote Originally Posted by 'ElectronDF',index.php?page=Thread&postID=206127#p ost206127
    My hunters and locks would disagree that you can't split up mobs to off tank. I select the mob on my alt (yeah, select on my main and push a key for the alt to target the mob) and then send in pets with just a /petattack command. Guess what, every pet goes to a different target, no matter who/what I have focused. They only switch if I use a /assist. Again, no matter what I have focused, you can send pets (or chars) at different mobs. Just don't /assist and they stay on that mob. And if you want you can still attack your main's target while you are targeting a different mob with clever use of [options].
    I've brought this up twice prior in threads like this and no one ever responded, so this is the first time I've seen someone actually answer how they do it under that system. My system still has the flexibility of selecting a new target on the fly in the case of adds or whatever (without having to go to another window/computer). Your way of doing things still works, though, and I appreciate the clarification on how you do it!
    [align=center]March of Souls, Illidan (US)
    [/align][align=center]Warrior, Warlock x 3, Priest
    [/align][align=center][----=----|----=----|----=----|----=----|----=----|----=----|----=----|----=----X]
    [/align]

Similar Threads

  1. What instance can I use my 80s without gimping exp?
    By Owltoid in forum General WoW Discussion
    Replies: 2
    Last Post: 02-27-2009, 03:29 PM
  2. Gimping myself?
    By Velassra in forum General WoW Discussion
    Replies: 7
    Last Post: 11-01-2008, 07:06 PM
  3. Replies: 2
    Last Post: 10-21-2008, 07:54 AM
  4. Replies: 13
    Last Post: 09-26-2008, 05:09 AM
  5. [target=targettarget] macro help
    By edwinyee82 in forum Macros and Addons
    Replies: 6
    Last Post: 06-09-2008, 12:41 PM

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •