I would like an NPC to whisper a message that includes an item link. Possible to use quest::itemlink(item_id); in this way?
like:
Code:
sub EVENT_SAY {
my $show = quest::saylink("show",1);
my $artifact = quest::itemlink(item_id);
my $NPCName = $npc->GetCleanName();
if ($text =~/hail/i){
$client->Message(315, "$NPCName whispers to you, 'Hello $name, I can $show you an Artifact if you are interested in it.'");
}
if ($text =~/show/i){
$client->Message(315, "$NPCName whispers to you, 'Well, here is is... $artifact.'");
}
}
This wont work, but any other way to make this happen?