Close
Showing results 1 to 3 of 3
  1. #1

    Default 4-er Boxing PvP (sucks ;-))

    Hey!

    I'am very frustrated... Okay, our BattleGround are very hard about lvl x9er brilliant equipt twinks. but, my frustration about follow:

    if my main char is killed, my other three stands stupid (follows the main) in the area.... that sucks, free killing for the enemys.

    how do you solve this, if you have solved this? ;-)

    PS:
    Now i have 4 Mages and 4 Shamans. The 4 Mages rocks so hard, but they are 1-hited in BG ;-(

  2. #2

    Default

    Uhhhh..... you change your focus macros such that any character can be a main.

    /target PlayerA
    /focus
    /targetlasttarget

    then every spell should be /cast [target=focus] Fireball
    or /target [target=focus] then /follow then /targetlasttarget

    And then assign focus buttons for various characters so you can switch on the fly.
    The Zins - 10 Boxing
    Xzin, Azin, Bzin, Czin, Dzin
    Xyzin, Ayzin, Byzin, Cyzin, Dyzin
    Magtheridon - US

  3. #3

    Default Re: 4-er Boxing PvP (sucks ;-))

    Quote Originally Posted by tequilale
    if my main char is killed, my other three stands stupid (follows the main) in the area.... that sucks, free killing for the enemys.
    As Xzin suggests you need to be able to recover from this by swapping main to another character. If your using focus the basis of following versus a hard coded macro system this becomes doable. Lets call this 'switch to auxiliary'.

    Just a note, if you have a physical 1:1 monitor setup. You can could also key a raritan-like kvm to switch your main out for the auxiliary on your main's old monitor and controllers. Obviously at some level the same keystrokes as the above focus changing macro should be shared.

    Unfortunately focus changing is protected command. Before 2.0 I used to do everything based on 'leader' of the party and I could easily move the leader around and when the leader changes in the party the "PARTY_LEADER_CHANGED" event fires. This was also the clue for all characters to re-autofollow again.

    You could move to something akin to this, especially if you have a obvious candidate for being main and aux. And once those two are gone your planning on retreating.

    The FollowUnit() command is keyed on UnitIds (target, focus, party1, part2, etc) so something akin to FollowUnit(GetLeaderUnit()) would be of some use. This also only really makes sense if all characters in the group can request leader switches with a '/party promoteme' or a private channel.

    [code:1]
    -- for party not raid
    function GetLeaderUnit()
    numParty = GetNumPartyMembers()
    if (numParty > 0) then
    for i=1, numParty do
    if (UnitIsPartyLeader("party"..i)) then
    return("party"..i);
    end
    end
    end
    return nil;
    end[/code:1]

Similar Threads

  1. my affliction warlock sucks
    By balrog78 in forum Multiboxing Group Composition Discussion
    Replies: 23
    Last Post: 12-16-2008, 01:57 AM
  2. My Battlegroup sucks... or is it me?
    By Boseefus in forum PvP Discussion
    Replies: 10
    Last Post: 10-29-2008, 11:51 AM
  3. KavoomKM and why it sucks hardcore
    By eqjoe in forum General WoW Discussion
    Replies: 3
    Last Post: 08-23-2008, 02:11 AM
  4. Vista Sucks!
    By thinus in forum Off-Topic
    Replies: 3
    Last Post: 12-07-2007, 09:35 AM
  5. PATCH DAY SUCKS
    By Picticon in forum General WoW Discussion
    Replies: 5
    Last Post: 09-26-2007, 05:35 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
  •