diff options
-rw-r--r-- | npc/003-1/lieutenantdausen.txt | 9 | ||||
-rw-r--r-- | npc/012-1/guards.txt | 9 |
2 files changed, 12 insertions, 6 deletions
diff --git a/npc/003-1/lieutenantdausen.txt b/npc/003-1/lieutenantdausen.txt index 390e79492..edb800e39 100644 --- a/npc/003-1/lieutenantdausen.txt +++ b/npc/003-1/lieutenantdausen.txt @@ -238,12 +238,15 @@ OnTimer300000: siege_cast("003-1", .name$, $@SIEGE_TULIM, TP_TULIM); end; -OnTimer60000: +// At minute 3, 6 and 8, difficulty raises OnTimer180000: -OnTimer240000: OnTimer360000: -OnTimer420000: OnTimer480000: + $@SIEGE_TULIM+=1; +// Other minutes are not affected +OnTimer60000: +OnTimer240000: +OnTimer420000: siege_cast("003-1", .name$, $@SIEGE_TULIM, TP_TULIM); end; diff --git a/npc/012-1/guards.txt b/npc/012-1/guards.txt index 507396f51..13fc66fca 100644 --- a/npc/012-1/guards.txt +++ b/npc/012-1/guards.txt @@ -668,12 +668,15 @@ OnTimer300000: siege_cast("012-1", .name$, $@SIEGE_HURNS, TP_HURNS); end; -OnTimer60000: +// At minute 3, 6 and 8, difficulty raises OnTimer180000: -OnTimer240000: OnTimer360000: -OnTimer420000: OnTimer480000: + $@SIEGE_HURNS+=1; +// Other minutes are not affected +OnTimer60000: +OnTimer240000: +OnTimer420000: siege_cast("012-1", .name$, $@SIEGE_HURNS, TP_HURNS); end; |