diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-05-26 16:18:53 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-05-26 16:18:53 -0300 |
commit | 137d17baa15482de8bbd7a5488e22951e7c958e9 (patch) | |
tree | 2921372c6dfe1575694281d9471d671acd7eca06 /npc | |
parent | fa029e199531d125fc63b27f7559eb96574f4e3f (diff) | |
download | serverdata-137d17baa15482de8bbd7a5488e22951e7c958e9.tar.gz serverdata-137d17baa15482de8bbd7a5488e22951e7c958e9.tar.bz2 serverdata-137d17baa15482de8bbd7a5488e22951e7c958e9.tar.xz serverdata-137d17baa15482de8bbd7a5488e22951e7c958e9.zip |
Reduce Monster Density in Impregnable Fortress B4F/B5F in 1k mobs each
Diffstat (limited to 'npc')
-rw-r--r-- | npc/026-4/ctrl.c | 4 | ||||
-rw-r--r-- | npc/026-5/ctrl.c | 3 | ||||
-rw-r--r-- | npc/commands/kami.txt | 2 |
3 files changed, 5 insertions, 4 deletions
diff --git a/npc/026-4/ctrl.c b/npc/026-4/ctrl.c index 99cc0e09e..2ebc2cf47 100644 --- a/npc/026-4/ctrl.c +++ b/npc/026-4/ctrl.c @@ -31,8 +31,8 @@ OnMon2359: // Reload .InstId (weekly takeover) debugmes "Reloading B4F... %d", gettimetick(0); killmonsterall("026-4"); - MazeMobs(145, false, 8, "026-4"); // Initiate Lv 145 mobs - MazeMobs(115, false, 21, "026-4"); // Initiate Lv 115 mobs + MazeMobs(145, false, 9, "026-4"); // Initiate Lv 145 mobs + MazeMobs(115, false, 24, "026-4"); // Initiate Lv 115 mobs debugmes "Reloaded B4F, %d", gettimetick(0); // Move NPCs around goto OnClock1843; diff --git a/npc/026-5/ctrl.c b/npc/026-5/ctrl.c index b6af6eed5..003e7c895 100644 --- a/npc/026-5/ctrl.c +++ b/npc/026-5/ctrl.c @@ -20,7 +20,8 @@ OnMon2358: // Check if this is causing time leak debugmes "Reloading B5F... %d", gettimetick(0); killmonsterall("026-5"); - MazeMobs(145, false, 7, "026-5"); // Initiate Lv 145 mobs + MazeMobs(145, false, 9, "026-5"); // Initiate Lv 145 mobs + MazeMobs(175, false, 60, "026-5"); // Initiate Lv 175 mobs debugmes "Reloaded B5F, %d", gettimetick(0); end; diff --git a/npc/commands/kami.txt b/npc/commands/kami.txt index a117768cb..8ac29c7f8 100644 --- a/npc/commands/kami.txt +++ b/npc/commands/kami.txt @@ -82,7 +82,7 @@ OnHarm2: OnLagDebug: consoleinfo("Checking for laggy maps, %d", gettimetick(0)); freeloop(true); - for (.@i=0;.@i<=500;.@i++) { + for (.@i=0;.@i<=600;.@i++) { .@m$ = getmapinfo(MAPINFO_NAME, .@i); if (.@m$ != "" && .@m$ != "U") { .@tops[.@i] = mobcount(.@m$, "all"); |