How do you tie a quest to a specific NPC? I get that you need to place the .pl file in the EQEMU/Quests/<zone>/ folder. However I can't seem to get the quest to work with the NPC.
For Example:
I created a new NPC named Tiiana_Moonwulf and placed it in the cshome zone. Next, I created a Tiiana_Moonwulf.pl file and placed it in the EQEMU\quests\cshome\ directory. The perl file contents are:
Code:
sub EVENT_SAY {
if($text=~/Hail/i){
quest::say("Greetings traveller. What brings you here?");
}
#END of FILE Zone:cshome -- Tiiana_Moonwulf
When I load up the game, and zone into cshome, the NPC is there, but no quest responses.
Based on the other quests in the folder, I assumed the quest.pl file needs to have the name of the NPC it's tied too (obviously this didn't work). I skimmed the quest lexicons but I didn't pick up anything about how to tie the quest to an NPC.