From d42c5abada38ebeea92e2109b8c1b6aac1a167e5 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 1 Mar 2019 20:06:13 -0300 Subject: Special() biom: May have fog instead of monster attack. --- npc/functions/weather.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'npc/functions/weather.txt') diff --git a/npc/functions/weather.txt b/npc/functions/weather.txt index 437b84400..ec161fa20 100644 --- a/npc/functions/weather.txt +++ b/npc/functions/weather.txt @@ -89,6 +89,10 @@ OnInit: htput(.wcore, "020-1", "iceland"); htput(.wcore, "022-1", "iceland"); + // Special + htput(.wcore, "011-3", "special"); + + debugmes "[Weather.sys] Total Maps = " + htsize(.wcore); // No "end" here, so server starts with weather OnMinute00: @@ -136,6 +140,19 @@ OnMinute45: else if (.@r < 300) .@mk=.@mk|MASK_SNOW; + } else if (.@type$ == "special") { + // This biom is too hot for snow. But it may rain. + if (.@r < 300) + .@mk=.@mk|MASK_RAIN; + + // Fog? (Evil Sanctum and Monster Attack) Or Sandstorm? + if (.@r % 4 == 2) + .@mk=.@mk|MASK_EVILSANCTUM; + else if (.@r % 4 == 1) + .@mk=.@mk|MASK_SANDSTORM; + else if (.@r % 4 == 3) + .@mk=.@mk|MASK_MATTACK; + } else { debugmes "Warning warning, blame Saulc! Weather system error on map "+.@key$; announce("ERROR BLAME SAULC! WEATHER SYSTEM CORRUPTED.", bc_all); -- cgit v1.2.3-60-g2f50