Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
m (updated description, using the same as on the index page.)
m (catfix, Replaced: {{widgetmethod}}<br> → {{widgetmethod}})
(9 intermediate revisions by 5 users not shown)
Line 3: Line 3:
 
Changes the item which is displayed in the tooltip according to the passed argument.
 
Changes the item which is displayed in the tooltip according to the passed argument.
   
GameTooltip:SetHyperlink("itemString" or "itemLink");
+
GameTooltip:SetHyperlink("itemString" or "itemLink")
   
   
 
== Arguments ==
 
== Arguments ==
:("[[itemString]]" or "[[itemLink]]")
+
:("itemString" or "itemLink")
:;"[[itemString]]" - a string representing an in-game item or enchant. For instance:
+
:;"itemString" - [[itemString]] - Representing an in-game item, enchant or spell. For instance:
 
:: "item:16846:0:0:0:0:0:0:0" is the link id for the "Giantstalker's Helm".
 
:: "item:16846:0:0:0:0:0:0:0" is the link id for the "Giantstalker's Helm".
 
:: "enchant:23804" is the link id for "Enchant Weapon - Mighty Intellect".
 
:: "enchant:23804" is the link id for "Enchant Weapon - Mighty Intellect".
  +
:: "spell:16039" is the link id for the [[shaman]] [[talent]] "[[Convection]]".
:;"[[itemLink]]" - a clickable string of an ingame item.
 
  +
:: "quest:8336" is the link id for the "A Fistful of Slivers" quest".
 
:;"itemLink" - [[itemLink]] - A clickable string of an in-game item.
   
 
== Returns ==
 
== Returns ==
  +
:; nil
: nothing
 
   
 
== Example ==
 
== Example ==
GameTooltip:SetHyperlink("item:16846:0:0:0:0:0:0:0");
+
GameTooltip:SetHyperlink("item:16846:0:0:0:0:0:0:0")
   
=== Result ===
+
<big>'''Result'''</big>
 
:This will replace the currently showing tooltip with one containing the information for the Giantstalker Helm.
 
:This will replace the currently showing tooltip with one containing the information for the Giantstalker Helm.
   
Line 25: Line 27:
 
: Calling this function with the same link which is currently shown, will close the Tooltip.
 
: Calling this function with the same link which is currently shown, will close the Tooltip.
   
: If you attempt to reference an item that is not in your local cache, i.e. you've never seen it before, the client will query the server for information about that item. If that particular item has not been seen since last server restart, the server will disconnect the client.
+
: If you attempt to reference an item that is not in your local cache, i.e. you've never seen it before, the client will query the server for information about that item. Since patch 2.2.3, querying item information for an itemID which has not been seen on your server since last restart will ''no longer result in a disconnect''.
   
 
: Calling this function with an enchant id that does not exist, will give the error message "Unknown link type".
 
: Calling this function with an enchant id that does not exist, will give the error message "Unknown link type".

Revision as of 23:55, 14 July 2008

Changes the item which is displayed in the tooltip according to the passed argument.

GameTooltip:SetHyperlink("itemString" or "itemLink")


Arguments

("itemString" or "itemLink")
"itemString" - itemString - Representing an in-game item, enchant or spell. For instance
"item:16846:0:0:0:0:0:0:0" is the link id for the "Giantstalker's Helm".
"enchant:23804" is the link id for "Enchant Weapon - Mighty Intellect".
"spell:16039" is the link id for the shaman talent "Spell fire lavaspawn [Convection]".
"quest:8336" is the link id for the "A Fistful of Slivers" quest".
"itemLink" - itemLink - A clickable string of an in-game item.

Returns

nil

Example

GameTooltip:SetHyperlink("item:16846:0:0:0:0:0:0:0")

Result

This will replace the currently showing tooltip with one containing the information for the Giantstalker Helm.

Details

Calling this function with the same link which is currently shown, will close the Tooltip.
If you attempt to reference an item that is not in your local cache, i.e. you've never seen it before, the client will query the server for information about that item. Since patch 2.2.3, querying item information for an itemID which has not been seen on your server since last restart will no longer result in a disconnect.
Calling this function with an enchant id that does not exist, will give the error message "Unknown link type".