2015-03-14 16:18:39 -04:00
|
|
|
sub EVENT_SAY {
|
|
|
|
|
# Prevent pets or charmed NPCs from using the default.pl
|
|
|
|
|
if (!$npc || $npc->GetOwnerID() || $npc->GetSwarmOwner())
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ($text=~/hail/i) {
|
|
|
|
|
quest::say("Shh , I think I hear the kobolds.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub EVENT_ITEM {
|
|
|
|
|
|
|
|
|
|
# Prevent pets or charmed NPCs from using the default.pl
|
|
|
|
|
if (!$npc || $npc->GetOwnerID() || $npc->GetSwarmOwner())
|
|
|
|
|
{
|
2023-08-06 22:39:24 -04:00
|
|
|
# plugin::GivePetItems();
|
2015-03-14 16:18:39 -04:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
plugin::return_items(\%itemcount);
|
|
|
|
|
|
|
|
|
|
}
|