diff options
author | Jesusaves <cpntb1@ymail.com> | 2025-06-21 09:36:17 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2025-06-21 09:36:17 -0300 |
commit | 5e1ffd9c2146402c4f29bead08ec462a673760ac (patch) | |
tree | e37f52cd2b5da68313a7b5d3f212c1b88f962f94 | |
parent | 1e3c59de8b82e64133ca89de7ea0543f30ed69b3 (diff) | |
download | serverdata-5e1ffd9c2146402c4f29bead08ec462a673760ac.tar.gz serverdata-5e1ffd9c2146402c4f29bead08ec462a673760ac.tar.bz2 serverdata-5e1ffd9c2146402c4f29bead08ec462a673760ac.tar.xz serverdata-5e1ffd9c2146402c4f29bead08ec462a673760ac.zip |
And this needs more work on
-rw-r--r-- | npc/017-0/wizard.txt | 6 | ||||
-rw-r--r-- | npc/027-1/wizard.txt | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/npc/017-0/wizard.txt b/npc/017-0/wizard.txt index 966ca0a21..ec7f23ddd 100644 --- a/npc/017-0/wizard.txt +++ b/npc/017-0/wizard.txt @@ -10,6 +10,12 @@ mesq l("Hello. I am the instructor assigned to the magic range training field."); if (!MAGIC_LVL) close; + // TODO: At some point mid-act2, LoF should show up + // Maybe mkbot.py causes shakes on everyone and announce LoF sudden appearance + if ($GAME_STORYLINE < 2 && !is_sponsor()) { + mesc l("However, the Monster King has been seen with huge armies nearby, so no one may go there with the High Council approval."); + close; + } next; mesn; mesq l("Do you wish to return to the Academy?"); diff --git a/npc/027-1/wizard.txt b/npc/027-1/wizard.txt index 355154420..d35b955a6 100644 --- a/npc/027-1/wizard.txt +++ b/npc/027-1/wizard.txt @@ -12,6 +12,12 @@ mesq l("It is a dangerous area, so we only allow students enrolled at the academy to participate."); if (!ACADEMIC_RANK && !is_sponsor()) close; + // TODO: At some point mid-act2, LoF should show up + // Maybe mkbot.py causes shakes on everyone and announce LoF sudden appearance + if ($GAME_STORYLINE < 2 && !is_sponsor()) { + mesc l("However, the Monster King has been seen with huge armies nearby, so no one may go there with the High Council approval."); + close; + } next; mesn; mesq l("Do you want to go there? The Red Wizard may be able to offer you training."); |