Wowpedia

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

READ MORE

Wowpedia
m (Marked as removed)
 
Line 1: Line 1:
{{wowapi}} __NOTOC__
+
{{wowapi|removed=6.0.2}} __NOTOC__
 
Returns info about the reforge item [http://wow.go-hero.net/framexml/15005/Blizzard_ReforgingUI/Blizzard_ReforgingUI.lua#91]
 
Returns info about the reforge item [http://wow.go-hero.net/framexml/15005/Blizzard_ReforgingUI/Blizzard_ReforgingUI.lua#91]
 
currentReforge, icon, name, quality, bound, cost = GetReforgeItemInfo()
 
currentReforge, icon, name, quality, bound, cost = GetReforgeItemInfo()

Latest revision as of 15:49, 22 July 2018

Returns info about the reforge item [1]

currentReforge, icon, name, quality, bound, cost = GetReforgeItemInfo()

Returns

currentReforge
Number - The current Reforge ID. Returns 0 if unreforged
icon
String - Item Icon
name
String - Item Name
quality
Number - Item Quality
bound
String - Returns (localized) "Soulbound". Returns an empty string "" if not soulbound
cost
Number - Reforge price in coppers

Example

/dump GetReforgeItemInfo()
=> 12, "Interface\Icons\inv_gauntlets_robe_raidpriest_j_01", "Handwraps of the Cleansing Flame", 4, "Soulbound", 72214
=> 0, "Interface\Icons\inv_bracer_plate_raidwarrior_j_01", "Bracers of Regal Force", 4, "", 127631

Patch history

Cataclysm Patch 4.0.1 (2010-10-12): Added.