summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-06-15 22:34:25 -0300
committerJesusaves <cpntb1@ymail.com>2021-06-15 22:34:25 -0300
commit5c30f81b22c30c90f37c21980e559d1bb7d65f5a (patch)
tree1040fe5551101468cba46de74ec3754cd21f69ab
parentf365969b6ca361bbf1688b19342e99454ce6b6f0 (diff)
downloadserverdata-5c30f81b22c30c90f37c21980e559d1bb7d65f5a.tar.gz
serverdata-5c30f81b22c30c90f37c21980e559d1bb7d65f5a.tar.bz2
serverdata-5c30f81b22c30c90f37c21980e559d1bb7d65f5a.tar.xz
serverdata-5c30f81b22c30c90f37c21980e559d1bb7d65f5a.zip
Update Morgan instructions, fix typo on @debug menu
-rw-r--r--npc/029-2/morgan.txt39
-rw-r--r--npc/commands/debug.txt8
2 files changed, 29 insertions, 18 deletions
diff --git a/npc/029-2/morgan.txt b/npc/029-2/morgan.txt
index d5416802..b393cb1f 100644
--- a/npc/029-2/morgan.txt
+++ b/npc/029-2/morgan.txt
@@ -91,34 +91,39 @@ L_Start:
next;
mesn;
mesq l("Speak to me again once you've cast the spell.");
+ mesc l("As an offensive spell, it'll only work if you have a valid target, like a monster.");
close;
L_Started:
- mes "[Morgan]";
- mes "\"Lets start with a basic wand attack. " + b("confringo") + "\"";
- mes "\"Equip the wand and lets try out that spell.\"";
- mes "\"To cast a spell open the chat window, type the invocation and press enter.\"";
- mes "\"Speak to me again once you've cast the spell.\"";
+ mesn;
+ mesq l("Lets start with a basic wand attack: %s.", b("confringo"));
+ mesq l("Equip the wand and lets try out that spell.");
+ mesc l("To cast a spell open the skill window, select the spell you wish to use, and press the %s button.", b(l("Use")));
+ mesq l("Speak to me again once you've cast the spell.");
+ mesc l("As an offensive spell, it'll only work if you have a valid target, like a monster.");
close;
L_CastOnce:
- mes "[Morgan]";
- mes "\"Ok, good job! Looks like you have good mana flow.\"";
- mes "\"Onto the next lesson. Now that you have " + b("confringo") + " cast,\"";
- mes "\"Each time you attack the wand will convert a bit of you mana into a magic bolt.\"";
- mes "\"After so many attacks, you will need to recast the invocation to stay attuned to the wand.\"";
- mes "\"(Logging out will also cancel any spell effects currently active in-game.).\"";
+ mesn;
+ mesq l("Ok, good job! Looks like you have good mana flow.");
+ mesq l("Onto the next lesson. Now that you have %s cast,", b("confringo"));
+ mesq l("Each time you attack the wand will convert a bit of you mana into a magic bolt.");
+ next;
+ mesq l("If an offensive spell requires an item, then after so many attacks, you may need to recast the whole invocation to stay attuned to the wand.");
+ mesc l("(Logging out will also cancel any spell effects currently active in-game.).");
+ next;
+ mesq l("In other words, offensive spells which require reagents won't consume these every time you cast, but will still require the items frequently.");
next;
- mes "\"I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald.\"";
+ mesq l("I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald.");
QL_MORGAN = 4;
close;
L_LearningDone:
- mes "[Morgan]";
- mes "\"" + b("confringo") + " is a basic wand attack.\"";
- mes "\"A Wand must be equipped to use the spell.\"";
- mes "\"To cast a spell open the chat window, type the invocation and press enter.\"";
- mes "\"I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald.\"";
+ mesn;
+ mesq l("%s is a basic wand attack.", b("confringo"));
+ mesq l("A Wand must be equipped to use the spell.");
+ mesc l("To cast a spell open the skill window, select the spell you wish to use, and press the %s button.", b(l("Use")));
+ mesq l("I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald.");
learnskill SKILL_CONFRINGO;
if (get_nibble(##03_TMWQUEST, 0) == 1) {
mes "";
diff --git a/npc/commands/debug.txt b/npc/commands/debug.txt
index e78a7134..64b4ad57 100644
--- a/npc/commands/debug.txt
+++ b/npc/commands/debug.txt
@@ -7,7 +7,7 @@ L_Begin:
mes "Your range: "+readbattleparam(getcharid(3), UDT_ATKRANGE);
mes "Bow range: "+getiteminfo(Bow, ITEMINFO_RANGE);
menu
- "Reset stat points.", L_Level,
+ "Reset stat points.", L_ResetStatusPoints,
"Change my level.", L_Level,
"Change other stuff.", L_Stats,
"Change my basic skills.", L_BasicSkills,
@@ -56,6 +56,12 @@ L_SameLevel:
next;
goto L_Begin;
+L_ResetStatusPoints:
+ resetstatus;
+ mes "Stats successfully resetted.";
+ next;
+ goto L_Begin;
+
L_BasicSkills:
adddefaultskills();
goto L_Begin;