diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-3/malindou.txt | 9 | ||||
-rw-r--r-- | npc/functions/dungeon.txt | 9 |
2 files changed, 16 insertions, 2 deletions
diff --git a/npc/003-3/malindou.txt b/npc/003-3/malindou.txt index b96bbc943..270fa50f7 100644 --- a/npc/003-3/malindou.txt +++ b/npc/003-3/malindou.txt @@ -591,6 +591,15 @@ OnInit: debugmes ""; $UPDATE=1590616575; } + // Current UPDATE value: Ter Jul 28 22:49:52 BRT 2020 + // Tulimshar Volcano + if ($UPDATE < 1595987392) { + $UPDATE=1595987392; + ReplaceItemFromEveryPlayer(816, IcedBottle); + debugmes ""; + debugmes "* Iced Water re-id"; + debugmes ""; + } // This mensures Contributors Credits, and changes only during updates. diff --git a/npc/functions/dungeon.txt b/npc/functions/dungeon.txt index 0e83bed49..125420575 100644 --- a/npc/functions/dungeon.txt +++ b/npc/functions/dungeon.txt @@ -28,8 +28,13 @@ OnHeat: } // You are in a HEATMAP$, so suffer damage from heat - percentheal -5, 0; - addtimer2 5000, .name$+"::OnHeat"; + if (@coolio > gettimetick(2)) + percentheal -1, 0; + else + percentheal -5, 0; + + // New tick (dies in 140~180 seconds) + addtimer2 rand2(7000, 9000), .name$+"::OnHeat"; end; } |