diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-07-01 01:02:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-07-01 01:02:04 -0300 |
commit | 182cd21d49fb40f92d5e894bd6a4d887e27fdcba (patch) | |
tree | 65503baa222c7a11a50953827d5df69f6eb7ffab /npc/027-1/luca.txt | |
parent | 9da4ca39423bcbb0639918c453827783e59e9e4d (diff) | |
download | serverdata-182cd21d49fb40f92d5e894bd6a4d887e27fdcba.tar.gz serverdata-182cd21d49fb40f92d5e894bd6a4d887e27fdcba.tar.bz2 serverdata-182cd21d49fb40f92d5e894bd6a4d887e27fdcba.tar.xz serverdata-182cd21d49fb40f92d5e894bd6a4d887e27fdcba.zip |
Rewrite Mr. Saves Academy and make no magic fail message more specific
Diffstat (limited to 'npc/027-1/luca.txt')
-rw-r--r-- | npc/027-1/luca.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/027-1/luca.txt b/npc/027-1/luca.txt index 961baa858..1038bfd41 100644 --- a/npc/027-1/luca.txt +++ b/npc/027-1/luca.txt @@ -46,7 +46,7 @@ L_NoMagic: next; mesn; - mesq l("Your lack of magical power is critical. I dare say, you might never in your life get access to a Mana Stone."); + mesq l("You do not have enough magic power for these classes."); next; mesn; mesq l("Besides the Magic Council, Andrei Sakar have his own Mana Stone, but I doubt he would train the likes of you, or share his Mana Stone."); @@ -71,7 +71,7 @@ function basicMagic { l("Ground Strike"), ASC_METEORASSAULT, l("Sharpshooter"), SN_SHARPSHOOTING, l("Cancel"), 0; - mes ""; + return; } function standardMagic { @@ -86,7 +86,7 @@ function standardMagic { l("Supreme Attack"), MC_MAMMONITE, l("Arrow Shower"), AC_SHOWER, l("Cancel"), 0; - mes ""; + return; } function advancedMagic { @@ -97,7 +97,7 @@ function advancedMagic { menuint l("Counter Attack"), KN_AUTOCOUNTER, l("Cancel"), 0; - mes ""; + return; } OnInit: |