mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
25 lines
No EOL
294 B
Raku
25 lines
No EOL
294 B
Raku
# Global Default NPC Actions
|
|
|
|
sub EVENT_SAY{
|
|
plugin::defaultSay();
|
|
}
|
|
|
|
sub EVENT_ITEM{
|
|
plugin::defaultItem();
|
|
}
|
|
|
|
sub EVENT_COMBAT{
|
|
plugin::defaultCombat();
|
|
}
|
|
|
|
sub EVENT_SLAY{
|
|
plugin::defaultSlay();
|
|
}
|
|
|
|
sub EVENT_NPC_SLAY{
|
|
plugin::defaultSlay();
|
|
}
|
|
|
|
sub EVENT_DEATH{
|
|
plugin::defaultDeath();
|
|
} |