PDA

View Full Version : Print Item in Chat??


Blackskyliner
25-10-2006, 03:27 PM
Hi,
I´m really new in the LuaScripting...

I`ve a problem... No not the really bad english :grin:

The problem that I have is:

I have the Itemlink-ID and I cant find out who I can write it, clickable, in the Chatframe. If there is an simply function then I´m realy blind, because I search since one day :azn:

Thanks for all answers
(And thanks to read this bad english :wink: )

Blackskyliner
25-10-2006, 04:15 PM
Ahh ok... I´ve found the Chat-Code
Here an little function :)


function CreateItemChatLink(ItemID)
local hex;
local sName, sLink, iQuality;

sName, sLink, iQuality = GetItemInfo(ItemID);

_, _, _, hex = GetItemQualityColor(iQuality);

return hex.."|H"..sLink.."|h["..sName.."]|h|r";
--Echo(hex.."|H"..sLink.."|h"..sName.."|h|r");
end