diff options
-rw-r--r-- | npc/023-2/mk.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/023-2/mk.txt b/npc/023-2/mk.txt index b5e8d5247..48e81dce7 100644 --- a/npc/023-2/mk.txt +++ b/npc/023-2/mk.txt @@ -99,7 +99,7 @@ OnTimer3000: } else if (.wcycle % 30 == 18) { areamonster "023-2", 21, 109, 31, 114, "Monster", any(BlackSlime, BlueSlime, SlimeBlast), 1; // PS. Drop “Demure Dark Soul” ¬.¬ } else if (.wcycle % 60 == 0) { - mapannounce "023-2", str(.wcycle/60)+" minute(s) remaining", 0; + mapannounce "023-2", str(15-(.wcycle/60))+" minute(s) remaining", 0; } if (.wcycle >= 900) goto L_Finish; initnpctimer; @@ -222,7 +222,7 @@ OnTouch: 023-2,35,90,0 script #NLIB_T07 NPC_HIDDEN,1,3,{ OnTouch: - if (gettime(2) < 25 || gettime(2) > 45) { + if ((gettime(2) < 25 || gettime(2) > 45) && !$@GM_OVERRIDE) { slide 39, 89; dispbottom l("I should not go ahead... yet."); } |