diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-02-16 14:40:41 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-02-16 14:40:41 -0300 |
commit | 5802c80f9269eeb97ba9fc43ddec905c6a39c06a (patch) | |
tree | 40fd5a66e2aac5301d55da5cb9d0adc5ff3df90f | |
parent | a6fa975d88deed53a6ed38cab928b8fc03439cff (diff) | |
download | serverdata-5802c80f9269eeb97ba9fc43ddec905c6a39c06a.tar.gz serverdata-5802c80f9269eeb97ba9fc43ddec905c6a39c06a.tar.bz2 serverdata-5802c80f9269eeb97ba9fc43ddec905c6a39c06a.tar.xz serverdata-5802c80f9269eeb97ba9fc43ddec905c6a39c06a.zip |
Missing code from previous commit (and optimization)
-rw-r--r-- | npc/000-0/sailors.txt | 2 | ||||
-rw-r--r-- | npc/002-3/nard.txt | 4 | ||||
-rw-r--r-- | npc/003-3/malindou.txt | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/npc/000-0/sailors.txt b/npc/000-0/sailors.txt index 139399a9c..cbe0d9602 100644 --- a/npc/000-0/sailors.txt +++ b/npc/000-0/sailors.txt @@ -26,7 +26,7 @@ OnTouch: showavatar 3; if ($EVENT$ == "Steam" && false) goto L_FiresOfSteam; - if ($HARDCORE || debug) goto L_ShortIntro; + if ($HARDCORE || debug || $NO_INTRO) goto L_ShortIntro; mesn "Narrator"; mesc l("You open your eyes. The remants of the salt water in your eyes is not particularly helping you see."); diff --git a/npc/002-3/nard.txt b/npc/002-3/nard.txt index 37ef38e94..457af21f3 100644 --- a/npc/002-3/nard.txt +++ b/npc/002-3/nard.txt @@ -16,7 +16,7 @@ L_Checker: if (.@narrator) goto L_Travel; if (getq(ShipQuests_Julia) >= 3) goto L_NotYet; - if (debug) goto L_TestServer; + if (debug || $HARDCORE || $NO_INTRO) goto L_TestServer; // Introduction mesn; mesq l("Hello."); @@ -391,6 +391,8 @@ L_TestServer: mesc l("THIS IS MOUBOOTAUR LEGENDS TEST SERVER."), 1; else if ($HARDCORE) mesc l("THIS IS MOUBOOTAUR LEGENDS HARDCORE SERVER."), 1; + else + mesc l("THIS IS MOUBOOTAUR LEGENDS SPECIAL SERVER."), 1; mesc l("Progress on this server may be %s.", b(l("lost forever"))), 1; mes ""; mesc l("Unless you know what you are doing, please go to Main Server instead."), 1; diff --git a/npc/003-3/malindou.txt b/npc/003-3/malindou.txt index e90b30013..f3035f40c 100644 --- a/npc/003-3/malindou.txt +++ b/npc/003-3/malindou.txt @@ -70,6 +70,8 @@ OnInit: $BETASERVER = false; $AUTORESTART = false; $REFERRAL_ENABLED = false; + //$NO_INTRO = false; + //$HARDCORE = false; $ALLIANCE_TAX1 = 7500; $ALLIANCE_TAX2 = 60; $FIRESOFSTEAM[1] = 2000; |