Returns the time left on a battleground or arena invitation


See also Battlefield functions.

Signature:

expiration = GetBattlefieldPortExpiration(index)

Arguments:

  • index - Index of a battleground/arena queue the player has joined (between 1 and MAX_BATTLEFIELD_QUEUES) (number)

Returns:

  • expiration - Time remaining before the player's invitation to enter the battleground/arena expires (in seconds); 0 if the player has not yet been invited to enter or is already in the battleground/arena instance (number)

Examples:

-- Print the time left for all active battleground queues
for index=1, MAX_BATTLEFIELD_QUEUES do
  local status, name = GetBattlefieldStatus(index)
  
  if status == "confirm" then
    print(format(
      "Your invitation to %s will expire in %d seconds.",
      name, GetBattlefieldPortExpiration(index)
    ))
  end
  
end