projecteq-projecteqquests/plugins/default.pl

25 lines
294 B
Perl
Raw Permalink Normal View History

2015-03-14 16:18:39 -04:00
# Global Default NPC Actions
sub EVENT_SAY{
plugin::defaultSay();
2015-03-14 16:18:39 -04:00
}
sub EVENT_ITEM{
plugin::defaultItem();
2015-03-14 16:18:39 -04:00
}
sub EVENT_COMBAT{
plugin::defaultCombat();
2015-03-14 16:18:39 -04:00
}
sub EVENT_SLAY{
plugin::defaultSlay();
2015-03-14 16:18:39 -04:00
}
sub EVENT_NPC_SLAY{
plugin::defaultSlay();
2015-03-14 16:18:39 -04:00
}
sub EVENT_DEATH{
plugin::defaultDeath();
2015-03-14 16:18:39 -04:00
}