diff options
-rw-r--r-- | npc/commands/debug.txt | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/npc/commands/debug.txt b/npc/commands/debug.txt index cab04a96..e78a7134 100644 --- a/npc/commands/debug.txt +++ b/npc/commands/debug.txt @@ -22,15 +22,16 @@ L_Stats: mesc l("GP: %s", col(b("@zeny"),3)); mesc l("Items: %s", col(b("/createitems"),3)); mesc l("Hide from monsters: %s", col(b("@monsterignore or @safe"),3)); + mesc l("Reset Stats: %s", col(b("@streset"),3)); next; goto L_Begin; 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; @@ -45,18 +46,13 @@ L_LevelTooLow: goto L_Begin; L_LevelTooHigh: - mes "Bad choice. Maximum level is 99."; + mes "Bad choice. Maximum level is 140."; next; goto L_Begin; L_SameLevel: mes "You already are level " + @lvl + "."; - next; - goto L_Begin; - -L_ResetStatusPoints: resetstatus; - mes "Stats successfully resetted."; next; goto L_Begin; |