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/009-3_Cave_beneath_Hurnscald | |
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/009-3_Cave_beneath_Hurnscald')
-rw-r--r-- | npc/009-3_Cave_beneath_Hurnscald/sword.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/009-3_Cave_beneath_Hurnscald/sword.txt b/npc/009-3_Cave_beneath_Hurnscald/sword.txt index d60ac123..2b5c5f75 100644 --- a/npc/009-3_Cave_beneath_Hurnscald/sword.txt +++ b/npc/009-3_Cave_beneath_Hurnscald/sword.txt @@ -26,7 +26,7 @@ L_message: if (@Q_status == @STATUS_W11_12) goto L_L2_almost_done; mes "[Magic Sword]"; - mes "Come back when thou art stronger."; + mes "\"Come back when thou art stronger.\""; next; close; @@ -136,18 +136,18 @@ L_L2_W11: "Yes, teach me more!", -; mes "[Magic Sword]"; - mes "\"If that is thy wish, I shall not stop thee. But do not expect to find merriment down this road.\""; - mes "\"I must ask that thou sacrificest a thousand monster points for this, however.\""; + mes "\"If that is thou wishest, I shall not stop thee. But do not expect to find merriment down this road.\""; + mes "\"I must ask that thou sacrificest five thousand monster points for this, however.\""; menu "No, I don't want that.", L_farewell, - "I agree.", -; + "Very well.", -; - if (Mobpt < 1000) goto L_lacking_mobpoints; + if (Mobpt < 5000) goto L_lacking_mobpoints; mes "[Magic Sword]"; mes "\"So be it, then.\""; mes "[1000 experience points]"; - set Mobpt, Mobpt - 1000; + set Mobpt, Mobpt - 5000; getexp 1000, 0; set @Q_status, @Q_status + 1; callsub S_update_var; |