View Single Post
  #1  
Old 04-06-2005, 04:54 AM
mwmdragon's Avatar
mwmdragon
Discordant
 
Join Date: Apr 2003
Location: Winnipeg, Manitoba Canada
Posts: 270
Default Guard_Alayle.pl (Updated)

Code:
############################################
# ZONE: West Freeport (freportw)
# DATABASE: PEQ-Velious
# LAST EDIT DATE: April 5,2005
# VERSION: 2.0
# DEVELOPER: MWMDRAGON
#
# *** NPC INFORMATION ***
#
# NAME: Guard_Alayle
# ID: 9135
# TYPE: Warrior
# RACE: Freeport guard
# LEVEL: 10
#
# *** ITEMS GIVEN OR TAKEN ***
#
# Sealed Letter ID-18817
# A Tattered Flier ID-18818
#
# *** QUESTS INVOLVED IN ***
#
#1 - Zimel's Blades (Quest for Soulfire)
#
# *** QUESTS AVAILABLE TO ***
#
#1 - Paladin
#
############################################

sub EVENT_SAY
{ 

if($text=~/Hail/i)
 {
 quest::say("Greetings. citizen!  You should not be in the Militia House.  These are restricted grounds.  Please leave at once unless you have business here.");
 }

 if($text=~/truth is good/i && $class == 'Paladin')
 {
 quest::say("Ssshhh!! Pipe down. The others might hear you. You must have something for me. Kalatrina must have given you something if you serve the Hall of Truth. If you have nothing please leave. You will blow my cover.");
 }

}

sub EVENT_ITEM
{ 
  if($class != 'Paladin')
 {
 quest::say("You have no business handing me this junk.");
 quest::summonitem($item1) if($item1);
 quest::summonitem($item2) if($item2);
 quest::summonitem($item3) if($item3);
 quest::summonitem($item4) if($item4);
 return;
 }
 else
     {

  # Sealed Letter ID-18817
  if($itemcount{18817} == 1)
  {
  quest::say("This is not good news. I must leave immediately. Here. Take this to Kala.. I mean my father. I found it on the floor of Sir Lucan DLeres quarters. Thanks again, messenger. I got this just in time.");
  quest::ding();
  # A Tattered Flier ID-18818
  quest::summonitem("18818");
  # Freeport Militia Faction
  quest::faction("105","-1");
  # Steel Warriors Faction
  quest::faction("311","1");
  # Knights of Truth Faction
  quest::faction("184","1");
  }
}
}
# After this Krazen_Loosh is supposed to spawn but he does not exsist in the DB.


#END of FILE Zone:freportw  ID:9135 -- Guard_Alayle
__________________
Thanks
MWMDRAGON

NeverQuest
http://neverquest.gotdns.com
Emucade
http://dragonsden.emuunlim.com
Reply With Quote