summaryrefslogtreecommitdiff
path: root/npc/functions/hub.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/hub.txt')
-rw-r--r--npc/functions/hub.txt14
1 files changed, 13 insertions, 1 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt
index cd2e40656..54ae09349 100644
--- a/npc/functions/hub.txt
+++ b/npc/functions/hub.txt
@@ -29,12 +29,24 @@ function script HUB_Login {
function script HUB_Logout {
.@dead=getarg(0, false);
getmapxy(.@mapa$, .@a,.@b, 0);
+ .@zone$=getmapinfo(MAPINFO_ZONE, .@mapa$);
// Hardcore Server
if ($HARDCORE && .@dead) {
if (@grace) {
+ // Grace is upon you (ie. script death)
@grace=false;
- // pass
+ } else if (.@zone$ == "MMO" && ABSOLVE_CNT <= 3) {
+ // Absolve (limited attempts)
+ if (ABSOLVE_DAY != gettimeparam(GETTIME_DAYOFMONTH)) {
+ ABSOLVE_DAY=gettimeparam(GETTIME_DAYOFMONTH);
+ ABSOLVE_CNT=0;
+ }
+ ABSOLVE_CNT+=1;
+ dispbottom l("This is a special map so your death is not counted.");
+ dispbottom b(l("You have %d non-counting deaths remaining today.", 3-ABSOLVE_CNT));
+ if (ABSOLVE_CNT == 3)
+ dispbottom col(l("WARNING: if you die again today in a special map it will be PERMANENT."), 1);
} else {
// TODO: Misc penalties (drop all items, etc)
atcommand("@dropall");