diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-11-02 10:22:11 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-11-02 10:22:11 -0300 |
commit | 1f81b1a964e89a81a27d06f8722026b3498ceeee (patch) | |
tree | 495a7f9419819ff27beefe876dc22c75d1aa4947 /npc/023-2/mk.txt | |
parent | 2662315eafe011af39452d665c74ad810908772e (diff) | |
download | serverdata-1f81b1a964e89a81a27d06f8722026b3498ceeee.tar.gz serverdata-1f81b1a964e89a81a27d06f8722026b3498ceeee.tar.bz2 serverdata-1f81b1a964e89a81a27d06f8722026b3498ceeee.tar.xz serverdata-1f81b1a964e89a81a27d06f8722026b3498ceeee.zip |
Either a right count, or a broken one
Diffstat (limited to 'npc/023-2/mk.txt')
-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."); } |