summaryrefslogtreecommitdiff
path: root/npc/003-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-04-17 19:53:22 -0300
committerJesusaves <cpntb1@ymail.com>2019-04-17 19:53:22 -0300
commitc2d519223d879e6b1b2743c572262b6cb94245f0 (patch)
tree63f8467f7048bbe35c99b8c422711eb06dc06dce /npc/003-1
parent0977a324a4426fb6231afdd0039ab6f5325d07f7 (diff)
downloadserverdata-c2d519223d879e6b1b2743c572262b6cb94245f0.tar.gz
serverdata-c2d519223d879e6b1b2743c572262b6cb94245f0.tar.bz2
serverdata-c2d519223d879e6b1b2743c572262b6cb94245f0.tar.xz
serverdata-c2d519223d879e6b1b2743c572262b6cb94245f0.zip
Make sieges less frequent (but still a lot of sieges)
Minimum 3 players online to siege begin.
Diffstat (limited to 'npc/003-1')
-rw-r--r--npc/003-1/lieutenantdausen.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/003-1/lieutenantdausen.txt b/npc/003-1/lieutenantdausen.txt
index 5c5214eb3..496f25993 100644
--- a/npc/003-1/lieutenantdausen.txt
+++ b/npc/003-1/lieutenantdausen.txt
@@ -129,7 +129,7 @@ OnMKSiege:
addmapmask "004-1", MASK_MATTACK;
changemusic "003-1", any("mythica.ogg", "eric_matyas_ghouls.ogg", "misuse.ogg", "Arabesque.ogg");
disablenpc("Mana Stone");
- $@SIEGE_TULIM=($@MK_AGGRO/30); // Each 30 aggro raises difficulty in 1
+ $@SIEGE_TULIM=($@MK_AGGRO/45); // Each 45 aggro raises difficulty in 1
pvpon("003-1");
pvpon("004-1");
announce(("##1WARNING! WARNING! Siege starting at Tulimshar!!"), bc_all);
@@ -305,7 +305,7 @@ OnTimer15000:
end;
OnTimer60000:
- if ($@SIEGE_TULIM == 1) {
+ if ($@SIEGE_TULIM >= 1 && $@SIEGE_TULIM < 5) {
mapannounce("003-1", "##1The Monster Lieutenant arrived!", bc_map);
areamonster("003-1", 0, 0, 120, 155, ("Monster Lieutenant"), 1077, 1, "Lieutenant Dausen::OnLieutenantDeath");
}
@@ -315,7 +315,7 @@ OnTimer60000:
end;
OnTimer120000:
- if ($@SIEGE_TULIM == 5) {
+ if ($@SIEGE_TULIM >= 5) {
mapannounce("003-1", "##1The Monster Colonel arrived!", bc_map);
areamonster("003-1", 0, 0, 120, 155, ("Monster Colonel"), 1036, 1, "Lieutenant Dausen::OnColonelDeath");
}