View Single Post
  #7  
Old 05-24-2005, 05:10 AM
mwmdragon's Avatar
mwmdragon
Discordant
 
Join Date: Apr 2003
Location: Winnipeg, Manitoba Canada
Posts: 270
Default help

The only help I could suggest now is to re-download the Perl Enabled EQEmu server files. Do not use any of your old files. Start fresh and edit the files that need editing.

And try with ONLY these 2 quest scripts in your freportw folder in your quest directory, and then make sure your first zone that is logged into is west freeport.

This is the newest code for Exterminator Qalantir and Guard Alayle, which has been used on a server and works.

Code:
############################################
# ZONE: West Freeport (freportw)
# DATABASE: PEQ-Velious
# LAST EDIT DATE: April 30,2005
# VERSION: 2.0
# DEVELOPER: MWMDRAGON
#
# *** NPC INFORMATION ***
#
# NAME: Guard_Alayle
# ID: 9135
# TYPE: Warrior
# RACE: Freeport Guards
# LEVEL: 10
#
# *** ITEMS GIVEN OR TAKEN ***
#
# A Sealed Letter ID-18817
# A tattered flier ID-18818
#
# *** QUESTS INVOLVED IN ***
#
#1 - Soulfire
#2 - Traitor Quest
#
# *** QUESTS AVAILABLE TO ***
#
#1 - Paladin
#2 - Warrior
#
# *** NPC NOTES ***
#
# Krazen_Loosh ID-9143 is supposed to spawn and kill Guard Alayle
#
# Must drop Reserve Militia Tunic ID-3097 (For The Traitor Quest)
#
############################################

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)
 {
 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
{
   # A 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 D'Lere's quarters. Thanks again, messenger. I got this just in time.");

   quest::ding();
   # A tattered flier ID-18818
   quest::summonitem("18818");
   # NPC Krazen_Loosh ID-9143
   quest::spawn2(9143,0,0,-61.71,-106.59,-24.25,0);
   }
}

sub EVENT_SIGNAL
{
 # Sent from Krazen_Loosh NPCID-9143
 quest::shout("Oh no!! It is too late!! Run!!");
}

sub EVENT_DEATH
{
quest::say("My comrades will avenge my death");
}
#END of FILE Zone:freportw  ID:9135 -- Guard_Alayle
Code:
############################################
# ZONE: West Freeport (freportw)
# DATABASE: PEQ-Velios
# LAST EDIT DATE: April 5,2005
# VERSION: 2.0
# DEVELOPER: MWMDRAGON
#
# *** NPC INFORMATION ***
#
# NAME: Exterminator_Qalantir
# ID: 9128
# TYPE: Warrior
# RACE: Human
# LEVEL: 30
#
# *** ITEMS GIVEN OR TAKEN ***
#
# Rat Whiskers ID-13071
#
# *** QUESTS INVOLVED IN ***
#
#1 - Exterminate the Vermin (West Freeport)
#
# *** QUESTS AVAILABLE TO ***
#
#1 - All
#
############################################

sub EVENT_SAY
{
  if ($text=~/hail/i)
  {
  quest::say("Pleased to meet you $name, if you are a newcomer to Freeport then you can clearly see we are having quite the rat problem. If you are interested the militia has granted me some coin to reward those that bring me four rat whiskers.")
  }

}
sub EVENT_ITEM
{
 # Rat Whiskers ID-13071
 if ($itemcount{13071} == 4)
 {
 quest::say("This is good work! I know this isnt much but it is all I can offer you. Thanks for your help!");
 quest::ding();
 quest::exp(25);
 quest::givecash ("1","1","1","0");
 }
}

#END of FILE Zone:freportw  ID:9128 -- Exterminator_Qalantir
__________________
Thanks
MWMDRAGON

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