summaryrefslogtreecommitdiff
path: root/npc/commands
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 /npc/commands
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
Diffstat (limited to 'npc/commands')
-rw-r--r--npc/commands/debug.txt8
1 files changed, 7 insertions, 1 deletions
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;