diff options
author | Fate <fate-tmw@googlemail.com> | 2009-01-11 14:24:01 -0700 |
---|---|---|
committer | Fate <fate-tmw@googlemail.com> | 2009-01-11 14:24:01 -0700 |
commit | 23518b19a828eb36e56c0cb0cd4a8f8778934ad6 (patch) | |
tree | 4377b121fb966b602e610548dbdbb15cd9f3358c /npc/011-1_Woodland | |
parent | 54238fbc5acca341449cd0b73b12e3b257a6d2cb (diff) | |
download | serverdata-23518b19a828eb36e56c0cb0cd4a8f8778934ad6.tar.gz serverdata-23518b19a828eb36e56c0cb0cd4a8f8778934ad6.tar.bz2 serverdata-23518b19a828eb36e56c0cb0cd4a8f8778934ad6.tar.xz serverdata-23518b19a828eb36e56c0cb0cd4a8f8778934ad6.zip |
Fixed a number of remaining bugs
Diffstat (limited to 'npc/011-1_Woodland')
-rw-r--r-- | npc/011-1_Woodland/alchemist.txt | 5 | ||||
-rw-r--r-- | npc/011-1_Woodland/auldsbel.txt | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/npc/011-1_Woodland/alchemist.txt b/npc/011-1_Woodland/alchemist.txt index a821a3c1..a15884cc 100644 --- a/npc/011-1_Woodland/alchemist.txt +++ b/npc/011-1_Woodland/alchemist.txt @@ -148,6 +148,7 @@ L_main_menu: L_iron_powder: mes "[Rauk the Alchemist]"; mes "\"Iron powder? Hmm, I can extract some iron powder out of a chunk of iron ore, but that will require me to dissolve it. If you give me a chunk of iron ore and 100 GP for the acid, I can do it.\""; + next; menu "Never mind.", L_abort, "Here you are!", -; @@ -165,11 +166,11 @@ L_iron_powder: set zeny, zeny - 100; getitem @IRONPOWDER, 4; mes "[Rauk the Alchemist]"; - mes "Rauk places your chunk of ore in a strange glass container, then pours a steaming yellow liquid over it. Before your eyes, the ore dissolves.\""; + mes "Rauk places your chunk of ore in a strange glass container, then pours a steaming yellow liquid over it. Before your eyes, the ore dissolves."; next; mes "[Rauk the Alchemist]"; - mes "Rauk pours another liquid over the resultant mixture, then pours the result through a piece of cloth placed in a funnel. He removes some amount of metal powder from the cloth and hands it to you.\""; + mes "Rauk pours another liquid over the resultant mixture, then pours the result through a piece of cloth placed in a funnel, followed by a cup of water. He removes the residual metal powder from the cloth and hands it to you."; mes "\"This is about as fine as I can make it without mechanical help.\""; next; diff --git a/npc/011-1_Woodland/auldsbel.txt b/npc/011-1_Woodland/auldsbel.txt index f6d9c8a8..da41c63a 100644 --- a/npc/011-1_Woodland/auldsbel.txt +++ b/npc/011-1_Woodland/auldsbel.txt @@ -31,6 +31,8 @@ set @MOUBOO_FIGURINE, 728; set @BUGLEG, 518; + set @mexp, MAGIC_EXPERIENCE & 65535; + set @Q_STATUS_INITIAL, 0; set @Q_STATUS_POSTINTRO, 1; set @Q_STATUS_INITIATION, 2; // quest for being able to cast `create mouboo figurine' @@ -1007,7 +1009,6 @@ LL_initiation_check: if (!(countitem(@MOUBOO_FIGURINE))) goto L_main_menu; delitem @MOUBOO_FIGURINE, 1; - set @mexp, MAGIC_EXPERIENCE & 65535; mes "[Auldsbel the Wizard]"; mes "Auldsbel inspects your figurine."; @@ -1040,11 +1041,12 @@ LL_initiation_check: callsub S_update_var; getexp 5000, 0; if (getskilllv(SKILL_MAGIC_TRANSMUTE) < 2) - skill SKILL_MAGIC_TRANSMUTE, 2; + setskill SKILL_MAGIC_TRANSMUTE, 2; next; goto L_main_menu; LL_student_start: + if (@mexp < 200) goto LL_notready; mes "[Auldsbel the Wizard]"; mes "\"Next, I shall teach you a higher-level transmutation spell.\""; if (getskilllv(SKILL_MAGIC) < 2) |