diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-18 23:15:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-18 23:15:36 -0300 |
commit | 495a42de7692534a5ece735d5f49b782be818b17 (patch) | |
tree | 28d35419e54744d5fbc718116656a11d8c5a6775 /npc/009-2/scholar.txt | |
parent | 26133939e3d16eaf59702e9285a49e6ab2767b2f (diff) | |
download | serverdata-495a42de7692534a5ece735d5f49b782be818b17.tar.gz serverdata-495a42de7692534a5ece735d5f49b782be818b17.tar.bz2 serverdata-495a42de7692534a5ece735d5f49b782be818b17.tar.xz serverdata-495a42de7692534a5ece735d5f49b782be818b17.zip |
Redesign some dialog in Halinarzo to “force” players to get magic.
Diffstat (limited to 'npc/009-2/scholar.txt')
-rw-r--r-- | npc/009-2/scholar.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/npc/009-2/scholar.txt b/npc/009-2/scholar.txt index 64e5cb6c1..cade0342b 100644 --- a/npc/009-2/scholar.txt +++ b/npc/009-2/scholar.txt @@ -21,6 +21,8 @@ mesc l("*sigh*"); if (.@q < 1) goto L_Intro; + if (.@q && getq(General_Narrator) == 7) + goto L_NeedHelp; close; L_NotEnough: @@ -32,6 +34,8 @@ L_NotEnough: } if (readparam(bInt) < $MANA_BINT+MAGIC_LVL*rand(10,13)) { mesq l("Out of my experience, your base intelligence may not be enough."); + if (!.@q) + mesc l("You should reset your stats and allocate some points at intelligence."); } if (.@q < 1) goto L_Intro; @@ -65,6 +69,18 @@ L_Intro: getitem TrainingWand, 1; close; +L_NeedHelp: + next; + mesn; + mesq l("Did you knew some crazy adventurers insists there is a Mana Stone on the danerous caves inside the town?"); + next; + mesn; + mesq l("I mean, that's absurd! If there was one, it would have been taken already. Unless if grew some sencience or something."); + next; + mesn; + mesq l("Anyway, if you ever feel bored and wanna see what I mean by yourself, just leave the building and head west, then north. There's a small entrance there."); + close; + OnInit: .sex=G_FEMALE; .distance=5; |