Thread: Norsea Sparkle
View Single Post
  #5  
Old 08-07-2017, 11:04 PM
The_Beast's Avatar
The_Beast
Discordant
 
Join Date: May 2016
Location: Under a rock
Posts: 290
Default

This is not a custom quest, it is definately in the database and quests folder.
Norsea Sparkle has this quest assigned to her -
You just need to update your database and quests if you don't have the NPC or quests at all.

Code:
sub EVENT_SAY {
  if($text =~ /Hail/i) {
    quest::say("He.. Hello. Wou.. would you like to buy something? Be quick or [Kizdean] will return!");
  }
  if($text =~ /Kizdean/i) {
    quest::say("Sshhh..Please..save me. Get..rid..of..him.");
  }
}

############### ITEM CODE ###############

sub EVENT_ITEM {
  if (plugin::check_handin(\%itemcount, 17931 => 1)) {
    quest::say("Oh!!! Thank you. You are my hero. I have been held captive by that horrid dark elf for weeks. Please take this. It was the key to a gem case which was stolen from me by an unseen rogue. If you find the gem case you can take it and the key to the original craftsman. He can open it with only two keys.");
    quest::ding();
    quest::exp(15000);
    quest::summonitem(12352);    #Tiny Key 2
  }
  plugin::return_items(\%itemcount);
}
Reply With Quote