diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-09-01 17:55:27 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-09-01 17:55:27 -0300 |
commit | 6eb12cb1714170b41df890835cd75ea5612ee178 (patch) | |
tree | f8355eb294d6ff4bc2de3a6cbbeaea433c320438 /npc/008-1/auldsbel.txt | |
parent | 18d6167ac7a688c4426ad6503837867257dd21de (diff) | |
download | serverdata-jesusalva/magic.tar.gz serverdata-jesusalva/magic.tar.bz2 serverdata-jesusalva/magic.tar.xz serverdata-jesusalva/magic.zip |
Fix a comments and improve Auldsbel to have an smoother logicjesusalva/magic
Diffstat (limited to 'npc/008-1/auldsbel.txt')
-rw-r--r-- | npc/008-1/auldsbel.txt | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/npc/008-1/auldsbel.txt b/npc/008-1/auldsbel.txt index 1b9f9400..7f0bc2b1 100644 --- a/npc/008-1/auldsbel.txt +++ b/npc/008-1/auldsbel.txt @@ -22,22 +22,28 @@ } speech l("Hello."), - l("Oh, you look more interested in magic.. the brotherhood did forbid most of the interesting paths of magic, but boring baby spells are still allowed."), - lg("If you come back later, I may teach you something. But psst, practising magic is quite dangerous these days."); - + l("Oh, you look more interested in magic.. the brotherhood did forbid most of the interesting paths of magic, but boring baby spells are still allowed."); // Give poor Auldsbel some weak magic D: if (!MAGIC_CLU[EVOL_MONSTER_IDENTIFY]) { mesn; mesq l("May I interest you in an useless skill?"); + ShowAbizit(true); + next; mesc l("Identify Monsters - Unlocks the %s chat command.", "##B/mi##b"); mesc l("It will analyse and inform about the monster stats and drops."); mesc l("If multiple monsters have same name, all of them will be listed."); mesc l("Alias: %s", "##B@monsterinfo##b"); next; + mesn; + mesq l("May I interest you in an useless skill?"); + mesc l("Skill: %s", getskillname(EVOL_MONSTER_IDENTIFY)); + // FIXME You know that learn_magic has its own prompt, right? if (askyesno() == ASK_YES) { learn_magic(EVOL_MONSTER_IDENTIFY); } - ShowAbizit(true); + } else { + mesn; + mesq lg("If you come back later, I may teach you something. But psst, practising magic is quite dangerous these days."); } close; |