diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-10-08 11:14:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-10-08 11:14:30 -0300 |
commit | 5b50db747dbd7e16ff86bb9da705774e3eafe31a (patch) | |
tree | 7dd2028eca08a6c6ee835cff99e69240ea8db4e4 /npc/026-4 | |
parent | 65728aaef808178a837c5587c74f120a010a3069 (diff) | |
download | serverdata-5b50db747dbd7e16ff86bb9da705774e3eafe31a.tar.gz serverdata-5b50db747dbd7e16ff86bb9da705774e3eafe31a.tar.bz2 serverdata-5b50db747dbd7e16ff86bb9da705774e3eafe31a.tar.xz serverdata-5b50db747dbd7e16ff86bb9da705774e3eafe31a.zip |
Completing Frostia quests makes you a friend of the elves, even if you're not elf.
Configure respawn and mob density for 026-4 and 026-5.
It happens shortly before the takeover, it is escalonated for realism.
Diffstat (limited to 'npc/026-4')
-rw-r--r-- | npc/026-4/ctrl.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/npc/026-4/ctrl.c b/npc/026-4/ctrl.c index 3419ac496..bd93eecbf 100644 --- a/npc/026-4/ctrl.c +++ b/npc/026-4/ctrl.c @@ -11,9 +11,11 @@ end; // On Tuesday, the map changes -OnTue0000: - // TODO: Reload .InstId - //MazeMobs(145, false, 10, "026-4"); // Initiate Lv 145 mobs +//OnTue0000: +OnMon2359: + // Reload .InstId + killmonsterall("026-4"); + MazeMobs(145, false, 8, "026-4"); // Initiate Lv 145 mobs end; // Initialize the dungeon @@ -23,8 +25,9 @@ OnInit: instance_set_timeout(0, 0, .InstId); instance_init(.InstId); debugmes "Impregnable Fortress B4F (%d): Init OK", .InstId; - MazeMobs(145, false, 10, "026-4"); // Initiate Lv 145 mobs - // TODO: Add the utilities + MazeMobs(145, false, 8, "026-4"); // Initiate Lv 145 mobs + // TODO: Add the utilities: Switches (and move them every day?) and mobpt logic + // And the actual portal (NPC?) end; } |