WoW:API AcceptBattlefieldPort: Difference between revisions
Jump to navigation
Jump to search
(revert last change) |
m (→Result: wrong word) |
||
Line 20: | Line 20: | ||
end | end | ||
===Result=== | ===Result=== | ||
If the | If the preceding code is called when the UPDATE_BATTLEFIELD_STATUS event is fired, it will automatically join a battleground when it becomes available. |
Revision as of 16:46, 7 July 2008
← WoW API < AcceptBattlefieldPort
Confirms entry into a Battleground you are queued for that is ready.
AcceptBattlefieldPort(index, accept)
Parameters
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.
Example
for i=1, MAX_BATTLEFIELD_QUEUES do status, mapName, instanceID = GetBattlefieldStatus(i) if status == "confirm" then AcceptBattlefieldPort(i,1) StaticPopup_Hide("CONFIRM_BATTLEFIELD_ENTRY") end end
Result
If the preceding code is called when the UPDATE_BATTLEFIELD_STATUS event is fired, it will automatically join a battleground when it becomes available.