summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-12-08 13:44:34 -0300
committerJesusaves <cpntb1@ymail.com>2021-12-08 13:44:34 -0300
commit4bb66d2e484279986505262595658a20fdc7fb02 (patch)
treec8c1ab8ef2b683ac38413ad85e663c2e9a1d7f56
parent3dafdb8d1d9bf783eb8904b9ebc0748c874776d2 (diff)
downloadserverdata-4bb66d2e484279986505262595658a20fdc7fb02.tar.gz
serverdata-4bb66d2e484279986505262595658a20fdc7fb02.tar.bz2
serverdata-4bb66d2e484279986505262595658a20fdc7fb02.tar.xz
serverdata-4bb66d2e484279986505262595658a20fdc7fb02.zip
Gak's Puzzle can be now solved. Still pending the GATE flag.
-rw-r--r--npc/080-1/final.txt28
1 files changed, 28 insertions, 0 deletions
diff --git a/npc/080-1/final.txt b/npc/080-1/final.txt
index 5d5cbca0..1c245210 100644
--- a/npc/080-1/final.txt
+++ b/npc/080-1/final.txt
@@ -253,3 +253,31 @@ OnTouch:
end;
}
+009-1,30,34,0 script Kytty#X21 NPC430,{
+ if (!isChristmas21() || !X21_START() || !X21GAK_GOTO()) {
+ npctalkonce l("Hey there, %s.", strcharinfo(0));
+ end;
+ }
+
+ mesn;
+ mesq l("I'm busy looking for %s. Damn, where are TMW Sysadmins when you need them...", .adm$[XMAS21_KEYWORD]);
+ close;
+
+OnInit:
+ .distance = 5;
+ setarray .adm$, "Bjorn", "Crush", "ElvenProgrammer", "Freeyorp", "Frost", "Jak1", "Jaxad", "Jesusalva", "MadCamel", "Reid", "Rotonen", "Tux9th", "Wombat", "Wushin";
+ if (!isChristmas21()) goto L_Off;
+ goto L_On;
+
+OnClock0000:
+ if (!isChristmas21()) goto L_Off;
+ goto L_On;
+
+L_On:
+ enablenpc .name$;
+ end;
+L_Off:
+ disablenpc .name$;
+ end;
+}
+