summaryrefslogtreecommitdiff
path: root/world/map/npc/commands
diff options
context:
space:
mode:
authorHoraK-FDF <horak-fdf@web.de>2023-10-16 03:17:20 +0000
committerLed Mitz <smoothshifter@tuta.io>2023-10-16 03:17:20 +0000
commit9584d85bc84fc367147f405403b16eb06daa1ac8 (patch)
treefb6de00b3eb982a9e7044fe84f2bcda9c32068c5 /world/map/npc/commands
parented5b7c7df1a770d69c0f60463bd324f762daa078 (diff)
downloadserverdata-9584d85bc84fc367147f405403b16eb06daa1ac8.tar.gz
serverdata-9584d85bc84fc367147f405403b16eb06daa1ac8.tar.bz2
serverdata-9584d85bc84fc367147f405403b16eb06daa1ac8.tar.xz
serverdata-9584d85bc84fc367147f405403b16eb06daa1ac8.zip
Equipment stats use
Diffstat (limited to 'world/map/npc/commands')
-rw-r--r--world/map/npc/commands/debug.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/commands/debug.txt b/world/map/npc/commands/debug.txt
index 19ac4114..c966c051 100644
--- a/world/map/npc/commands/debug.txt
+++ b/world/map/npc/commands/debug.txt
@@ -25,11 +25,11 @@ L_Begin:
"Close.", L_Close;
L_Level:
- mes "What level do you want to be (min: 1 - max: 99)?";
+ mes "What level do you want to be (min: 1 - max: 140)?";
input @lvl;
if (@lvl < 1)
goto L_LevelTooLow;
- if (@lvl > 99)
+ if (@lvl > 140)
goto L_LevelTooHigh;
if (BaseLevel == @lvl)
goto L_SameLevel;