diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-06-02 21:08:39 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-06-02 21:08:39 -0300 |
commit | 55b93d659642f1b70afe2de2cae2b3cddb3613c0 (patch) | |
tree | a05d3fb14bb845c9bcba6253ff39de82929127d8 | |
parent | 7635a1f5f409509dfca3aa2105a35f2a554ae77a (diff) | |
download | serverdata-55b93d659642f1b70afe2de2cae2b3cddb3613c0.tar.gz serverdata-55b93d659642f1b70afe2de2cae2b3cddb3613c0.tar.bz2 serverdata-55b93d659642f1b70afe2de2cae2b3cddb3613c0.tar.xz serverdata-55b93d659642f1b70afe2de2cae2b3cddb3613c0.zip |
Lockdown the whole Magic Academy when this flag is not set.
You can still use the back entrance, but it's a non-concern.
-rw-r--r-- | npc/003-0/recepcionist.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/003-0/recepcionist.txt b/npc/003-0/recepcionist.txt index 90c4a4274..13bf10862 100644 --- a/npc/003-0/recepcionist.txt +++ b/npc/003-0/recepcionist.txt @@ -56,6 +56,7 @@ L_Prologue: if (!MGQUEST) { MGQUEST=true; getitem ScholarshipBadge, 1; + mesc l("You can now visit the Magic Academy!"), 2; } tutmes l("Magic skills allows for a more advanced gameplay, but they are meant for level 30 onward."); tutmes l("If you follow %s's quest, you will eventually reach the requirements for here.", b("Lua")); @@ -155,7 +156,7 @@ OnInstanceInit: end; OnTouch: - if (MAGIC_LVL && $HURNS_LIBDATE) + if (MAGIC_LVL && $HURNS_LIBDATE && MGQUEST) warp "027-1", any(89,90), 155; end; } |