View Single Post
  #1  
Old 08-27-2009, 07:48 PM
Lillu
Hill Giant
 
Join Date: Sep 2008
Posts: 204
Default quest::itemlink(item_id);

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?
__________________
Reply With Quote