WoW API: JoinBattlefield

From AddOn Studio
Revision as of 18:00, 12 July 2006 by WoWWiki>Shadowed
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Queues the player for a battleground

JoinBattlefield(index,joinAs)

Parameters

Arguments

index, joinAs
index
Integer - Which battlefield index to queue for ( 0 for the first available )
joinAs : Integer - Queue as a group or queue solo ( nil for solo; 1 for group )

Details

Queue the player for the current battleground instance list you are viewing, if a window isn't opened it will use the last one you had opened.


Example

Queue as a group if the battleground will allow it, which is currently everything except Alterac Valley.

if( CanJoinBattlefieldAsGroup() ) then
  -- Queue as a group for the first available battleground
  JoinBattlefield(0, 1);
else
  -- Solo queue for the first available battleground
  JoinBattlefield(0);
end


WoW API < JoinBattlefield