diff options
-rw-r--r-- | npc/000-2-2/ratto.txt | 4 | ||||
-rw-r--r-- | npc/001-2-23/ratto.txt | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/npc/000-2-2/ratto.txt b/npc/000-2-2/ratto.txt index 98e0f0e7..d30ccd17 100644 --- a/npc/000-2-2/ratto.txt +++ b/npc/000-2-2/ratto.txt @@ -91,6 +91,8 @@ OnVictor: deltimer("RattosControl::OnRatto2Respawn"); deltimer("RattosControl::OnRatto3Respawn"); deltimer("RattosControl::OnRatto4Respawn"); - addtimer(2000, "Peter::OnDone"); + addtimercount("Peter::OnTimeout", 5000); + addtimer(5000, "Peter::OnDone"); + dispbottom l("It looks like all monsters were killed."); end; } diff --git a/npc/001-2-23/ratto.txt b/npc/001-2-23/ratto.txt index 059af355..24bb1e1a 100644 --- a/npc/001-2-23/ratto.txt +++ b/npc/001-2-23/ratto.txt @@ -91,6 +91,8 @@ L_Victor: deltimer("RattosControl#Artis::OnRatto2Respawn"); deltimer("RattosControl#Artis::OnRatto3Respawn"); deltimer("RattosControl#Artis::OnRatto4Respawn"); - addtimer(2000, "Peter#Artis::OnDone"); + addtimercount("Peter#Artis::OnTimeout", 5000); + addtimer(5000, "Peter#Artis::OnDone"); + dispbottom l("It looks like all monsters were killed."); end; } |