macro - enter two specific BGs? menu

Shout-Out

User Tag List

Results 1 to 5 of 5
  1. #1
    smithwicks's Avatar Member
    Reputation
    8
    Join Date
    Apr 2009
    Posts
    71
    Thanks G/R
    6/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    macro - enter two specific BGs?

    Can anyone help me create a macro to queue up for two specific BGs?

    AV
    IOC

    macro - enter two specific BGs?
  2. #2
    Neer's Avatar Trend Rider Authenticator enabled
    Reputation
    1460
    Join Date
    Apr 2007
    Posts
    751
    Thanks G/R
    183/834
    Trade Feedback
    6 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Sure
    Code:
    /click HonorFrameSpecificFrameButton4
    /click HonorFrameSoloQueueButton
    /click HonorFrameSpecificFrameButton6
    /click HonorFrameSoloQueueButton
    I bet there are better ways but It works
    Last edited by Neer; 07-18-2014 at 08:35 PM.

  3. #3
    jadethread1's Avatar Member
    Reputation
    -14
    Join Date
    Dec 2011
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    To join one specific BG:
    Code:
    /run for i=1,GetNumBattlegroundTypes()do local name,_,_,_,_=GetBattlegroundInfo(i)if name=="Name of BG"then JoinBattlefield(i)end end
    Replace "Name of BG" with the full name of the BG you want to join enclosed in quotation marks. e.g. "Warsong Gulch" or "Arathi Basin".

    To join multiple specific BGs:
    Code:
    /run for i=1,GetNumBattlegroundTypes()do local _,_,_,_,BGID=GetBattlegroundInfo(i)function JB(I)JoinBattlefield(BGID==I and i)end JB(ID#1)JB(ID#2)JB(ID#3)end
    Replace ID#X with the Battleground ID of the BG you want to join.
    1 = Alterac Valley
    2 = Warsong Gulch
    3 = Arathi Basin
    7 = Eye of the Storm
    9 = Strand of the Ancients
    30 = Isle of Conquest
    32 = Random

    You can join as many BGs as the PvP system will let you by adding JB(ID) for each new one between the last JB() tag and end.

    Examples:
    Code:
    Join 1 BG:
    /run for i=1,GetNumBattlegroundTypes()do local _,_,_,_,BGID=GetBattlegroundInfo(i)function JB(I)JoinBattlefield(BGID==I and i)end JB(ID#1)end
    Join 2 BGs:
    /run for i=1,GetNumBattlegroundTypes()do local _,_,_,_,BGID=GetBattlegroundInfo(i)function JB(I)JoinBattlefield(BGID==I and i)end JB(ID#1)JB(ID#2)end
    Join 3 BGs:
    /run for i=1,GetNumBattlegroundTypes()do local _,_,_,_,BGID=GetBattlegroundInfo(i)function JB(I)JoinBattlefield(BGID==I and i)end JB(ID#1)JB(ID#2)JB(ID#3)end
    Join 4 BGs:
    /run for i=1,GetNumBattlegroundTypes()do local _,_,_,_,BGID=GetBattlegroundInfo(i)function JB(I)JoinBattlefield(BGID==I and i)end JB(ID#1)JB(ID#2)JB(ID#3)JB(ID#4)end
    try this, This is verbatim copy and pasted from the wow forums.
    Last edited by jadethread1; 07-18-2014 at 08:35 PM.

  4. #4
    Augury13's Avatar Legendary
    Reputation
    884
    Join Date
    Oct 2012
    Posts
    1,736
    Thanks G/R
    424/74
    Trade Feedback
    7 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    +5 when i can jadethread1..... amazing lol.

  5. #5
    smithwicks's Avatar Member
    Reputation
    8
    Join Date
    Apr 2009
    Posts
    71
    Thanks G/R
    6/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jadethread1 View Post
    To join one specific BG:
    Code:
    /run for i=1,GetNumBattlegroundTypes()do local name,_,_,_,_=GetBattlegroundInfo(i)if name=="Name of BG"then JoinBattlefield(i)end end
    Replace "Name of BG" with the full name of the BG you want to join enclosed in quotation marks. e.g. "Warsong Gulch" or "Arathi Basin".

    To join multiple specific BGs:
    Code:
    /run for i=1,GetNumBattlegroundTypes()do local _,_,_,_,BGID=GetBattlegroundInfo(i)function JB(I)JoinBattlefield(BGID==I and i)end JB(ID#1)JB(ID#2)JB(ID#3)end
    Replace ID#X with the Battleground ID of the BG you want to join.
    1 = Alterac Valley
    2 = Warsong Gulch
    3 = Arathi Basin
    7 = Eye of the Storm
    9 = Strand of the Ancients
    30 = Isle of Conquest
    32 = Random

    You can join as many BGs as the PvP system will let you by adding JB(ID) for each new one between the last JB() tag and end.

    Examples:
    Code:
    Join 1 BG:
    /run for i=1,GetNumBattlegroundTypes()do local _,_,_,_,BGID=GetBattlegroundInfo(i)function JB(I)JoinBattlefield(BGID==I and i)end JB(ID#1)end
    Join 2 BGs:
    /run for i=1,GetNumBattlegroundTypes()do local _,_,_,_,BGID=GetBattlegroundInfo(i)function JB(I)JoinBattlefield(BGID==I and i)end JB(ID#1)JB(ID#2)end
    Join 3 BGs:
    /run for i=1,GetNumBattlegroundTypes()do local _,_,_,_,BGID=GetBattlegroundInfo(i)function JB(I)JoinBattlefield(BGID==I and i)end JB(ID#1)JB(ID#2)JB(ID#3)end
    Join 4 BGs:
    /run for i=1,GetNumBattlegroundTypes()do local _,_,_,_,BGID=GetBattlegroundInfo(i)function JB(I)JoinBattlefield(BGID==I and i)end JB(ID#1)JB(ID#2)JB(ID#3)JB(ID#4)end
    try this, This is verbatim copy and pasted from the wow forums.

    i wish this worked for me. stuck it in a macro, but fails.

Similar Threads

  1. LF Macro to buy specific items from the Ironpaw Token vendor
    By cukiemunster in forum WoW UI, Macros and Talent Specs
    Replies: 3
    Last Post: 01-17-2014, 11:58 AM
  2. Can I enter a specific CRZ ?
    By Fantersam123 in forum World of Warcraft General
    Replies: 2
    Last Post: 05-19-2013, 09:01 AM
  3. [Dc-macro] [Guide] IoC - Enter alliance keep before capture.
    By Freefall552 in forum World of Warcraft Exploration
    Replies: 1
    Last Post: 02-26-2010, 05:29 PM
  4. Two tracking types at the same time (With Macro)
    By deathshadow13 in forum World of Warcraft Exploits
    Replies: 14
    Last Post: 02-01-2009, 02:19 AM
  5. Multiboxing AFK botting bgs (w/ macro express + hotkeynet)
    By krishilbun in forum World of Warcraft Bots and Programs
    Replies: 7
    Last Post: 08-31-2008, 03:56 AM
All times are GMT -5. The time now is 09:57 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search