View Single Post
  #1  
Old 04-10-2008, 02:35 AM
fault
Hill Giant
 
Join Date: Sep 2005
Posts: 114
Default Seilaen's Plight

Figured I would post here instead of PEQ this time. Even though I really like PEQ, there are some things in this quest I Could NOT find.

Seilaens Plight In PoN

PHP Code:
#############
#NPC: Seilaen
#Author: Spre
#Version: 0.0.1
#EQEMUV: 6.2+
#############

if ($text=~/hail/i) {
  
quest::say("Who.. who are you? You.. You must help me! ");
}
if (
$text=~/I will help you./i) {
  
quest::say("The forest, it.. I can feel it looking at me.. following me! Oh, I just want to leave and go!");
  
quest::say("I don't know what it could be, I was just walking home and.. and.. this doesn't look like the forest near my home at all! Oh, and I am wearing my mother's Locket of Escape.. but it won't work for me!");
}
if (
$text=~/What locket of escape?/i) {
  
quest::say("My mother always carried this with her. I have no idea why I suddenly have it. Perhaps I can make it work for you, if you want me to?");
}
if (
$text=~/I want you to./i) {
  
quest::say("Hmm.. It doesn't seem to want to work. Do you see Deyid?'");
}
if (
$text=~/I see Deyid./i) {
  
quest::say("Ohh, that must be what is causing all this trouble! You all seem so brave. Maybe if you chop down Deyid the Twisted I will be able to go home? Will you please? If you have gathered together and are prepared, have your leaders step forward and tell me their readiness. Mother's Locket doesn't seem as bright as it was before. I fear I can only use it but a couple more times.");
}
if (
$text=~/We are ready/i) {
  
quest::movegrp(-,-,-,-); #Unsure of where this is actually Suppose to warp you. My Live sub wore out cannot look
}

sub EVENT_DEATH {
  
quest::emote("An eerie silence settles onto the forest as Deyid the Twisted slumps over, defeated");
  
quest::shout("Oh thank you! Thank you! I don't feel the trees watching me anymore! And.. Let me try Mother's Locket again, I think it might work..");
quest::depop();
}
#During the fight he summons a ring of Corrupt Treants
# Unfortunately i cannot locate said mob anywhere.
#sub EVENT_HP {
#
#    if ($hpevent == 60) {
# The ring of spawns go here
#    } 
All Fairly Accurate, Only things I couldn;t do was the group move cords. and the ring of mobs he spawns, As I cannot find those mobs anywhere.

Source: http://everquest.allakhazam.com/db/q...tml?quest=2248
Reply With Quote