PDA

View Full Version : Noclin_Saah.pl


aragon
04-23-2005, 11:16 AM
Noclin_Saah.pl

############################################
#
# DEVELOPER: ARAGON
#
# *** NPC INFORMATION ***
#
# ZONE: Paineel
# NAME: Noclin Saah
# RACE: Erudite
# LEVEL: 15
#
#
# *** REQUIRED ITEMS ***
#
# 1 - Noclin's Femur (ID:7107)
#
#
# *** QUESTS AVAILABLE TO ***
#
# - minimum level 15
# - All Classes All Races
#
#
# *** REWARDS ***
#
# 1 - Heretics Faction (+)
# 2 - Deepwater Knights Faction (-)
# 3 - Noclin's Femur (ID:7106)
#
############################################

sub EVENT_SAY {
if($text=~/Hail/i)
{
quest::say("go kill some firbeetle boyo");
}
}
sub EVENT_ITEM
{
if($itemcount{7107} && $itemcount{7107} == 1 && $ulevel >= $mlevel)
{
quest::exp(125);
quest::faction("143","1");
quest::faction("79","-1");
}
else
{
quest::say("How did someone as inexperienced as you get this? I'll see that it gets to the right

place.");
}
}