summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-12-03 20:20:50 -0300
committerJesusaves <cpntb1@ymail.com>2021-12-03 20:20:50 -0300
commit538877fc11796dd8e16bee78e639ec6a91661487 (patch)
tree23f9283cd518ea52f827c705995e1c233b5f2224
parent1a63e9cf5fe39b7044791249267d2b6c7d3f0fbd (diff)
downloadserverdata-538877fc11796dd8e16bee78e639ec6a91661487.tar.gz
serverdata-538877fc11796dd8e16bee78e639ec6a91661487.tar.bz2
serverdata-538877fc11796dd8e16bee78e639ec6a91661487.tar.xz
serverdata-538877fc11796dd8e16bee78e639ec6a91661487.zip
Change this to be constant, and bump from 12.5k to 15k
-rw-r--r--db/constants.conf1
-rw-r--r--npc/081-2/logic.txt4
-rw-r--r--npc/annuals/xmas/2021.txt2
3 files changed, 4 insertions, 3 deletions
diff --git a/db/constants.conf b/db/constants.conf
index 16941536..0b85ac76 100644
--- a/db/constants.conf
+++ b/db/constants.conf
@@ -3391,6 +3391,7 @@ more than one separator can be used in a row (so 12_3___456 is illegal).
X21BC1_ON: 1
X21BC1_OFF: 2
+ X21_EXP_PUZZLE: 15000
comment__: "Focus Constants"
FSKILL_MALLARDS_EYE: 1
diff --git a/npc/081-2/logic.txt b/npc/081-2/logic.txt
index f87207a6..4df0adba 100644
--- a/npc/081-2/logic.txt
+++ b/npc/081-2/logic.txt
@@ -53,7 +53,7 @@ OnTouch:
if (X21CANDLE_CHECK()) {
delcells("X21L1@"+X21ID());
specialeffect(FX_MAGIC_WICKED_SPAWN, AREA, getcharid(3));
- getexp 12500, 0;
+ getexp X21_EXP_PUZZLE, 0;
}
closeclientdialog;
close;
@@ -217,7 +217,7 @@ OnInit:
delcells("X21L3@"+X21ID());
'XMAS21AMBUSH = true;
specialeffect(FX_MAGIC_WICKED_SPAWN, AREA, getcharid(3));
- getexp 12500, 0;
+ getexp X21_EXP_PUZZLE, 0;
} else {
npctalk l("*click*");
}
diff --git a/npc/annuals/xmas/2021.txt b/npc/annuals/xmas/2021.txt
index 0cc4164a..530e92a6 100644
--- a/npc/annuals/xmas/2021.txt
+++ b/npc/annuals/xmas/2021.txt
@@ -101,7 +101,7 @@ function script X21_SEEDS {
if (X21SEED_CHECK()) {
delcells("X21L2@"+X21ID());
specialeffect(FX_MAGIC_WICKED_SPAWN, AREA, getcharid(3));
- getexp 12500, 0;
+ getexp X21_EXP_PUZZLE, 0;
}
return;
}