summaryrefslogtreecommitdiff
path: root/npc/003-10/arnea.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/003-10/arnea.txt')
-rw-r--r--npc/003-10/arnea.txt12
1 files changed, 11 insertions, 1 deletions
diff --git a/npc/003-10/arnea.txt b/npc/003-10/arnea.txt
index 05e1102d3..5b900b853 100644
--- a/npc/003-10/arnea.txt
+++ b/npc/003-10/arnea.txt
@@ -34,7 +34,7 @@ L_NewArena:
// Register to HTTable $@ARENAS (or override existing entry) your ID and a password
//.@PASSWORD=(getcharid(0)**1.137);
- .@PASSWORD=1337+getcharid(0)+getcharid(3);
+ .@PASSWORD=(gettime(7)*4)+24+getcharid(0)+getcharid(3);
htput($@ARENAS, .@PASSWORD, getcharid(0));
// XXX - Important Note - XXX
@@ -135,5 +135,15 @@ OnInit:
$@ARENAS = htnew();
end;
+// Protect bugs by disabling NPC on new year. This NPC have two days off for vacations B-)
+OnDay1231:
+OnDay0101:
+ disablenpc(.name$);
+ end;
+
+OnDay0102:
+ enablenpc(.name$);
+ end;
+
}