diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-12-07 23:32:32 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-12-07 23:32:32 -0300 |
commit | 33527785153687e062492de734592b22e7e69fc3 (patch) | |
tree | 5dfd88c6e5889c06b7d06a5b7de87c2d98d252cf /npc/annuals/xmas | |
parent | ba6d8687bb0ef03d053c813a402c0bb701218ccf (diff) | |
download | serverdata-33527785153687e062492de734592b22e7e69fc3.tar.gz serverdata-33527785153687e062492de734592b22e7e69fc3.tar.bz2 serverdata-33527785153687e062492de734592b22e7e69fc3.tar.xz serverdata-33527785153687e062492de734592b22e7e69fc3.zip |
Santa's Helper - Gateway access
Diffstat (limited to 'npc/annuals/xmas')
-rw-r--r-- | npc/annuals/xmas/2021.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/npc/annuals/xmas/2021.txt b/npc/annuals/xmas/2021.txt index 05c8a354..9ece85f6 100644 --- a/npc/annuals/xmas/2021.txt +++ b/npc/annuals/xmas/2021.txt @@ -16,6 +16,13 @@ function script X21TYPE { return (getcharid(1) > 0 ? IOT_PARTY : IOT_CHAR); } +function script X21_START { + return (XMAS2021 & X21_ACCEPTED); +} +function script X21_DOSTART { + XMAS2021 = (XMAS2021 | X21_ACCEPTED); +} + function script X21BC1_CLEAR { return (XMAS2021 & X21_BOSSDEFEAT); } @@ -24,6 +31,7 @@ function script X21BC1_DOCLEAR { XMAS2021 = (XMAS2021 | X21_BOSSDEFEAT); return; } + function script X21ED1_CLEAR { return (XMAS2021 & X21_ALYSSARESCUE); } @@ -33,6 +41,15 @@ function script X21ED1_DOCLEAR { return; } +function script X21ED2_CLEAR { + return (XMAS2021 & X21_COMPLETE); +} + +function script X21ED2_DOCLEAR { + XMAS2021 = (XMAS2021 | X21_COMPLETE); + return; +} + function script X21SRLZ { .@n=getarg(0); switch (.@n) { |