WoW API: GetSavedInstanceChatLink

Revision as of 04:46, 15 August 2023 by Move page script (talk | contribs) (Move page script moved page API GetSavedInstanceChatLink to API GetSavedInstanceChatLink without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

WoW API < GetSavedInstanceChatLink

Retrieves the SavedInstanceChatLink to a specific instance.

 link = GetSavedInstanceChatLink(index)

ArgumentsEdit

index
The index of the instance you want to query.

ReturnsEdit

link
If instance at index is linkable.
nil
If instance is not linkable (none at index).

ExampleEdit

local link = GetSavedInstanceChatLink(1)
if link then
	print(link)
else
	print("Linking is not available for this instance!")
end

ResultEdit

Displays a link to the first instance in your Raid Information tab in the chat window, unless there is none available.

DetailsEdit