summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2025-08-10 21:27:47 -0300
committerJesusaves <cpntb1@ymail.com>2025-08-10 21:27:47 -0300
commitd74fadc9b4110be133a7fbc07883d275b6f461df (patch)
tree9c8584dd20c1b7bc15e8a03e1eb521a2ffc5e992
parent212e467674f503c8e4e4506a7041a7ce443bdeab (diff)
downloadserverdata-d74fadc9b4110be133a7fbc07883d275b6f461df.tar.gz
serverdata-d74fadc9b4110be133a7fbc07883d275b6f461df.tar.bz2
serverdata-d74fadc9b4110be133a7fbc07883d275b6f461df.tar.xz
serverdata-d74fadc9b4110be133a7fbc07883d275b6f461df.zip
Do not send #world broadcasts on Test Server (as general rule)
-rw-r--r--npc/001-7/celestia_bossfight.txt2
-rw-r--r--npc/commands/kami.txt4
2 files changed, 3 insertions, 3 deletions
diff --git a/npc/001-7/celestia_bossfight.txt b/npc/001-7/celestia_bossfight.txt
index 62701a13e..e1765e5bd 100644
--- a/npc/001-7/celestia_bossfight.txt
+++ b/npc/001-7/celestia_bossfight.txt
@@ -97,7 +97,7 @@ L_Survivor:
}
// Completion bonus
getexp 0, 2500;
- getitem StrangeCoin, 1;
+ getitem StrangeCoin, 1+(REBIRTH/2);
compareandsetq HurnscaldQuest_Celestia, 5, 6;
mesn col(l("The Yeti King"), 3);
mesq l("Here kid. Frostia, the elf town, is somewhere near here, but I'm not sure if you can reach it from here.");
diff --git a/npc/commands/kami.txt b/npc/commands/kami.txt
index e9eaaa025..81c7e0b22 100644
--- a/npc/commands/kami.txt
+++ b/npc/commands/kami.txt
@@ -131,8 +131,8 @@ function script kamibroadcast {
.@msg$=getarg(0);
.@snd$=getarg(1, "");
- // NOTE: Do not send to #world in Hardcore servers
- if (!$HARDCORE) {
+ // NOTE: Do not send to #world in Hardcore or Test servers
+ if (!$HARDCORE && !debug) {
// Send to #world
if (.@snd$ == "")
channelmes("#world", .@msg$);