WoW:API GetBattlefieldStatus: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 21: | Line 21: | ||
... | ... | ||
---- | |||
{{WoW API}} | |||
Revision as of 04:38, 4 January 2006
status, mapName, instanceID = GetBattlefieldStatus(index);
Get status on a battlefield
Value of index appears to be the Battlefield queue index. Changed from null argument to index in 1.9
- Returns
- status, mapName, instanceID
- status
- String - The player's Battlefield status ('none', 'queued', 'confirm', 'active', 'error')
- mapName
- String - The queued Battlefield's name ('Alterac Valley', etc.)
- instanceID
- Integer - The number of the Battlefield instance
for i=1, MAX_BATTLEFIELD_QUEUES do
status, mapName, instanceID = GetBattlefieldStatus(i);
if ( instanceID ~= 0 ) then
mapName = mapName.." "..instanceID;
end
...