diff options
-rw-r--r-- | npc/commands/debug.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/npc/commands/debug.txt b/npc/commands/debug.txt index 975470ee..d0241f28 100644 --- a/npc/commands/debug.txt +++ b/npc/commands/debug.txt @@ -12,6 +12,7 @@ L_Begin: menu "Reset stat points.", L_Level, "Change my level.", L_Level, + "Change other stuff.", L_Stats, "Change my basic skills.", L_BasicSkills, "Change my focus skills.", L_FocusSkills, "Change my magic skills.", L_MagicSkills, @@ -19,6 +20,14 @@ L_Begin: "Reset everything.", L_ResetAll, "Close.", L_close; +L_Stats: + mesc l("Stats: %s", col(b("@str/@agi/@vit/@int/@dex/@luk/@allstats"),3)); + 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)); + next; + goto L_Begin; + L_Level: mes "What level do you want to be (min: 1 - max: 99)?"; input @lvl; |