summaryrefslogtreecommitdiff
path: root/npc/functions
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-07-28 22:59:05 -0300
committerJesusaves <cpntb1@ymail.com>2020-07-28 22:59:05 -0300
commit279a4acb0a4a64a1e69154ef862b300473fd4145 (patch)
tree405e629521816383dc1127750eff4af1bb1b2769 /npc/functions
parent7ec7411f6e631d69a3b2e1286d1e069138c3c860 (diff)
downloadserverdata-279a4acb0a4a64a1e69154ef862b300473fd4145.tar.gz
serverdata-279a4acb0a4a64a1e69154ef862b300473fd4145.tar.bz2
serverdata-279a4acb0a4a64a1e69154ef862b300473fd4145.tar.xz
serverdata-279a4acb0a4a64a1e69154ef862b300473fd4145.zip
Iced Water can now be used and will give you a break on the Volcano.
Diffstat (limited to 'npc/functions')
-rw-r--r--npc/functions/dungeon.txt9
1 files changed, 7 insertions, 2 deletions
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;
}