Close
Page 1 of 2 1 2 LastLast
Showing results 1 to 10 of 18
  1. #1

    Default Macro to enter and exit battleground

    Dear players!

    I was unable to find a simple macro.

    How to enter battleground? and how to exit it? I just dont want to press the red buttons all the time in each window - I'd like to use a macro. How to tell in a macro to press that button for me?

    Thank you for your help!

  2. #2
    Member Clovis's Avatar
    Join Date
    Nov 2008
    Location
    Colorado Springs, CO
    Posts
    272

    Default

    I'd love to know this as well -- I used preform enabler but with 3.2 it no longer allows the leader to join/leave queues and BGs.
    "Shamanigins" quin-Shaman team - Magtheridon US - The Zerg

    Clovian Clovian Clovian Clovian Clovian

  3. #3

    Default

    /script AcceptBattlefieldPort(1,1)

    That will work of you queue for 1 BG at a time, if you queue for more it will always try to join the first one you queued for, whether or not it's the one that popped. If you use it in a bg there is a good chance it will boot you from the BG without warning, use at your own risk.

  4. #4

    Default

    /run
    AcceptBattlefieldPort(1,1);
    AcceptBattlefieldPort(2,1);
    AcceptBattlefieldPort(3,1);
    AcceptBattlefieldPort(4,1);

    I use that macro I found from a post a while back. Not sure what the difference between the port numbers means, but it seems to work for me getting into the BGs. I've only hittin it once when the first window popped for my team to enter. Haven't tried it yet to exit the BGs, as I've only run them a few times since multiboxing.
    Last edited by lans83 : 09-08-2009 at 06:38 AM

  5. #5

    Default

    Quote Originally Posted by lans83 View Post
    /run AcceptBattlefieldPort(1,1);AcceptBattlefieldPort(2 ,1);AcceptBattlefieldPort(3,1);AcceptBattlefieldPo rt(4,1);

    I use that macro I found from a post a while back. Not sure what the difference between the port numbers means, but it seems to work for me getting into the BGs. I've only hittin it once when the first window popped for my team to enter. Haven't tried it yet to exit the BGs, as I've only run them a few times since multiboxing.
    Just tagging this so I can find it later, thanks for the info
    Siaea(h), Saiea(h), Seaie(h), Sieae(h), Seiae(h) - H(A) PvP
    Parting, Sadeness, Praetorium, Greetings, Salutations - H PvP
    Mullethead, Auderna, Jestitte, Zelynde, Serlena - H PvP
    Clotte, Tahru, Martitsu, Mikiel, Larain - H PvE
    Bonechewer - PvP - US

  6. #6

    Default

    Is it safe to assume that Strand and Isle are (5,1) and (6,1) respectively? Offline at the moment so unable to test it myself, sorry.

    That is, to cover all possible BGs:

    /run AcceptBattlefieldPort(1,1);AcceptBattlefieldPort(2 ,1);AcceptBattlefieldPort(3,1);AcceptBattlefieldPo rt(4,1);AcceptBattlefieldPort(5,1);AcceptBattlefie ldPort(6,1);

  7. #7

    Default

    Quote Originally Posted by MarkHR View Post
    Is it safe to assume that Strand and Isle are (5,1) and (6,1) respectively? Offline at the moment so unable to test it myself, sorry.

    That is, to cover all possible BGs:

    /run AcceptBattlefieldPort(1,1);AcceptBattlefieldPort(2 ,1);AcceptBattlefieldPort(3,1);AcceptBattlefieldPo rt(4,1);AcceptBattlefieldPort(5,1);AcceptBattlefie ldPort(6,1);
    I just tried to enter WSG with this and it did not work 8\
    Currently 5 Boxing 5 Protection Paladins on Whisperwind Alliance
    The Power of Five!!! ( short video )

  8. #8

    Default

    Originally Posted by MarkHR
    Is it safe to assume that Strand and Isle are (5,1) and (6,1) respectively? Offline at the moment so unable to test it myself, sorry.

    That is, to cover all possible BGs:

    /run AcceptBattlefieldPort(1,1);AcceptBattlefieldPort(2 ,1);AcceptBattlefieldPort(3,1);AcceptBattlefieldPo rt(4,1);AcceptBattlefieldPort(5,1);AcceptBattlefie ldPort(6,1);
    Quote Originally Posted by Lyonheart View Post
    I just tried to enter WSG with this and it did not work 8\

    That's because the commands are misspelled and have spaces where there shouldn't be. Always proofread before posting, please :/ But yes, this should work if spelled right.

    Try this line instead:

    /run
    AcceptBattlefieldPort(1,1);
    AcceptBattlefieldPort(2,1);
    AcceptBattlefieldPort(3,1);
    AcceptBattlefieldPort(4,1);
    AcceptBattlefieldPort(5,1);
    AcceptBattlefieldPort(6,1);
    Something in the post options is putting the spaces in these commands. It looks fine when you review the post before submitting it, but you'll have to go in and change the post under 'Edit'. Can a mod or admin please look into this? No telling how many other posts are being effected by this.
    Last edited by lans83 : 09-08-2009 at 06:37 AM

  9. #9

    Default

    By the way after a BG is over you can use /afk to get out and it will not give you the deserter debuff. I do this all the time so i dont have to click x10.
    Prot Paladin, tank/resto Druid, 2xResto Shaman, 3xElemental Shaman, Balance Druid, Shadow Priest, Arcane Mage PVE
    10x shamans PVP

  10. #10

    Default

    The AcceptBattlefieldPort(1,1), the first 1 here is the index, it is a list of BGs you are qued for.
    IE
    If you are qued for WSG (1), AV (2), and Strand (3), and they all pop at one time.
    AcceptBattlefieldPort(1,1) Will take the WSG que.
    AcceptBattlefieldPort(2,1) Will take the AV que.
    AcceptBattlefieldPort(3,1) Will take the Strand que.

    So the first number in parenthesis will tell the client (game) which que and the second number will tell it what to do (1 is enter, 0/nil is leave)

    (Servers are down, so i can't test this), but

    /run
    AcceptBattlefieldPort(1,0);
    AcceptBattlefieldPort(2,0);
    AcceptBattlefieldPort(3,0);
    AcceptBattlefieldPort(4,0);
    AcceptBattlefieldPort(5,0);
    AcceptBattlefieldPort(6,0);
    Should yank you OUT of the battleground. Caution: it will pull you out regardless if the BG is done, so if you leave before, it will probably give you deserter.

    Taken from:

    http://www.wowwiki.com/API_AcceptBattlefieldPort
    Arguments

    index Numeric - The battlefield in queue to enter.
    accept Boolean - Whether or not to accept entry to the battlefield.

    Details


    Passing 0 or nil as an accept argument will cause you to leave the queue for the battlefield, if you are inside a battlefield you will leave it regardless if it's ended or not.

Posting Rules

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