PDA

View Full Version : Norsea Sparkle


SoltanHeatwave
07-20-2017, 03:55 PM
I did a search in quest for this one and couldn't find any matches. Norsea Sparkle resides in West commonlands or in the new version in the commonlands. In either case she is the jeweler and her hut is located between the toll booth and the mountains that befallen is located in. If you hail her the conversation will turn towards Kizdean Gix. She will ask you to please get rid of him. Unfortunately this isn't a quest. It has never been one. This request also occurs on liver servers. I am not very good at programming, but wonder if anyone has ever though about making this a quest?

demonstar55
07-20-2017, 04:29 PM
Appears to be implemented on PEQ.

javewow
08-03-2017, 02:01 AM
Custom Quest

SoltanHeatwave
08-07-2017, 09:54 PM
I have the latest Akkadius emulator and peq database and it is not in there. Do I have to do something to activate it? I checked it on my server and the quest is not working. Do I have to request this on the Custom Quest board. Was just asking to find out if was implemented or if I had to request it.

The_Beast
08-07-2017, 11:04 PM
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.


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);
}

SoltanHeatwave
08-10-2017, 11:45 AM
I updated the quest and the database and the quest does appear. Just have to kill Kiz a few times to get the sparkle to drop. Thank you very much for the help.