View Single Post
03-21-13, 10:33 AM   #36
fRodzet
A Flamescale Wyrmkin
Join Date: Mar 2013
Posts: 114
Originally Posted by F16Gaming View Post
What if you add some print statements to check the value of the strings? Like this:

lua Code:
  1. local function ChatlinkTooltips_ShowTip(self, linkData)
  2.     print("linkData == " .. linkData)
  3.     local linkType = strmatch(linkData, "|H(.-):")
  4.     print("linkType == " .. linkType)
  5.     if supportedType[linkType] then

What does it show from those print calls?
linkData == item:77272:0:0:0:0:0:0:0:11:0:0
linkType == item

<-- this is what it prints to the chatframe output.
  Reply With Quote