diff options
author | Haru <haru@dotalux.com> | 2016-06-18 02:53:15 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-06-25 17:29:51 +0200 |
commit | 9d3cab59ed1fd4825b4aeac0c354363bb6782212 (patch) | |
tree | d10ea52fdc540d3ee0dd8577f18ffed2281a5f7f /npc/custom/events | |
parent | 2b857b6532a48d2516e65565c5077e129ab23b19 (diff) | |
download | hercules-9d3cab59ed1fd4825b4aeac0c354363bb6782212.tar.gz hercules-9d3cab59ed1fd4825b4aeac0c354363bb6782212.tar.bz2 hercules-9d3cab59ed1fd4825b4aeac0c354363bb6782212.tar.xz hercules-9d3cab59ed1fd4825b4aeac0c354363bb6782212.zip |
Fixed some script errors
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/custom/events')
-rw-r--r-- | npc/custom/events/uneasy_cemetery.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/custom/events/uneasy_cemetery.txt b/npc/custom/events/uneasy_cemetery.txt index 99c1f21cb..7027dacbf 100644 --- a/npc/custom/events/uneasy_cemetery.txt +++ b/npc/custom/events/uneasy_cemetery.txt @@ -33,7 +33,7 @@ OnInit: end; OnHour06: - killmonster "Uneasy_Check::OnZombieDead"; //The Sun kills undead in the morning + killmonster "prontera", "Uneasy_Check::OnZombieDead"; //The Sun kills undead in the morning end; OnHour01: @@ -54,7 +54,7 @@ OnZombieDead: end; L_Start_Undead: - killmonster "Uneasy_Check::OnZombieDead"; //kills any left monsters + killmonster "prontera", "Uneasy_Check::OnZombieDead"; //kills any left monsters enablenpc "Mother Mathana"; //call some monsters in the city set $@UNEASY_MOB, 65; @@ -98,7 +98,7 @@ L_Undead_Walk: mes "[Mother Mathana]"; mes "Upon pouring the cemetery with that water we'll get " + $UNEASY_DL + " safe nights!"; next; - killmonster "Uneasy_Check::OnZombieDead"; //kills any left monsters + killmonster "prontera", "Uneasy_Check::OnZombieDead"; //kills any left monsters mes "[Mother Mathana]"; mes "See, "+ $UNEASY_H$ +"? They all are gone now!"; next; |