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

Code:
############################################
# ZONE: West Freeport (freportw)
# DATABASE: PEQ-Velious
# LAST EDIT DATE: April 25,2005
# VERSION: 1.0
# ORIGIONAL QUEST BY: PEQ Team
# DEVELOPER: MWMDRAGON
#
# *** NPC INFORMATION ***
#
# NAME: Toxdil
# ID: 9123
# TYPE: Shopkeeper
# RACE: Dark Elf
# LEVEL: 40
#
# *** ITEMS GIVEN OR TAKEN ***
#
# A Snake Venom Sac ID-14017
# Snake Venom ID-14016
# A Tiny Key ID-12352
# A Sparkling Sapphire ID-12349
#
# *** QUESTS INVOLVED IN ***
#
#1 - Toxdils Poison
#2 - Burning Rapier
#
# *** QUESTS AVAILABLE TO ***
#
#1 - Rogue
#2 - Rogue
#
# *** NPC NOTES ***
#
# Merchant ID-2 (In MWMDRAGON-EQDB (Unreleased at the moment))
#
############################################


sub EVENT_SAY
{ 

if($text=~/Hail/i)
{
quest::say("Correct. Toxdil is my name. No last name. I swear allegiance to no house nor guild.  What brings you down here?  Perhaps you seek my [deadly liquid], perhaps not.  Whatever your reasons, I warn you to keep an eye out for the militia.  They have begun to patrol the sewers.");
}

if($text=~/deadly liquid/i && $class == "Rogue")
{
quest::say("The deadly liquid I offer to rogues is called spider venom.  I will be glad to make it for you. but first you must supply me with two snake venom sacs and my fee of 20 gold pieces.  You may find the sacs upon the giant snakes of the Commonlands.");
}

if($text=~/gems/i && $class == "Rogue")
{
quest::say("I have made aquintence with a certain gem and a [gem case]. I belive I still have one of the keys needed to open the case.");
}

if($text=~/gem case/i && $class == "Rogue")
{
quest::say("I will give you the key on one condition. That You bring me what was once in the gem case. I belive the last I saw of it, I had sold it to a jewler... Yes, I think Noresa was her name.");
}

}


sub EVENT_ITEM
{
 # A Sparkling Sapphire ID-12349
 if ($itemcount{12349} == 1)
 {
	quest::say("The gem!! I would notice it's sparkle anywhere!! I cannot believe you are handing it back to me!! What a fool. Here you are fool. You can have this worthless key now.");

	quest::ding();
	# A Tiny Key ID-12352
	quest::summonitem("12352");
 }
 elsif ($itemcount{14017} == 2 && $gold == 20)
 {
        quest::ding();
	# Snake Venom ID-14016
	quest::summonitem("14016");
	quest::exp("100");
 }

}
#END of FILE Zone:freportw  ID:9123 -- Toxdil
__________________
Thanks
MWMDRAGON

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