diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-14 13:18:42 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-14 13:18:42 -0300 |
commit | c01601b7efcd506981767c017b94e31cf676f718 (patch) | |
tree | f9444542c7def7ef9301dc613efbb48417ebf64c /npc | |
parent | e7f5a469e883efac52e41287ecefd3aba823d8c8 (diff) | |
download | serverdata-c01601b7efcd506981767c017b94e31cf676f718.tar.gz serverdata-c01601b7efcd506981767c017b94e31cf676f718.tar.bz2 serverdata-c01601b7efcd506981767c017b94e31cf676f718.tar.xz serverdata-c01601b7efcd506981767c017b94e31cf676f718.zip |
Test Server warning on Nard
Diffstat (limited to 'npc')
-rw-r--r-- | npc/002-3/nard.txt | 13 | ||||
-rw-r--r-- | npc/functions/hub.txt | 3 |
2 files changed, 15 insertions, 1 deletions
diff --git a/npc/002-3/nard.txt b/npc/002-3/nard.txt index 3180539d7..66f7e4b6e 100644 --- a/npc/002-3/nard.txt +++ b/npc/002-3/nard.txt @@ -16,6 +16,7 @@ L_Checker: if (.@narrator) goto L_Travel; if (getq(ShipQuests_Julia) >= 3) goto L_NotYet; + if (debug) goto L_TestServer; // Introduction mesn; mesq l("Hello."); @@ -50,6 +51,7 @@ L_Checker: break; } +L_Main: mesn; mesq l("We have made a stop at a little island, before making it on to the port of Tulimshar."); next; @@ -366,6 +368,17 @@ OnNardStage: closeclientdialog; close; +L_TestServer: + mesc l("THIS IS MOUBOOTAUR LEGENDS TEST 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; + mesc l("Main server is: %s", b("server.moubootaurlegends.org")), 2; + mes ""; + mesf "@@help://test-server|%s@@", l("more information about test server ->"); + next; + goto L_Main; + L_Close: close; diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index 0de66cb85..3832b02a6 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -51,11 +51,12 @@ function script HUB_Logout { if (ABSOLVE_CNT == 3) dispbottom col(l("WARNING: if you die again today in a special map it will be PERMANENT."), 1); } else { - // TODO: Misc penalties (drop all items, etc) + // Meet your final demise! atcommand("@dropall"); makeitem CoinBag, Zeny/500, .@mapa$, .@a, .@b; Zeny=0; //resetlvl(2); // FIXME: Split the exp + // TODO: Warp back to Candor or it'll be unplayable // TODO: It could be @jail, but it is buggy atcommand("@jailfor 1d "+strcharinfo(0)); } |