diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-11 13:23:24 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-11 13:23:24 -0300 |
commit | 0293e9cdb644bb70576024c76c69216a6d0767bf (patch) | |
tree | 43692b815bea289563e1da1bef4939fd5f300969 /npc/commands/debug.txt | |
parent | cfbb17bdb5a0b209eb64b898ef76829c4144684a (diff) | |
download | serverdata-0293e9cdb644bb70576024c76c69216a6d0767bf.tar.gz serverdata-0293e9cdb644bb70576024c76c69216a6d0767bf.tar.bz2 serverdata-0293e9cdb644bb70576024c76c69216a6d0767bf.tar.xz serverdata-0293e9cdb644bb70576024c76c69216a6d0767bf.zip |
Allow Luca to focus/unfocus even if he is not teaching the skill
Diffstat (limited to 'npc/commands/debug.txt')
-rw-r--r-- | npc/commands/debug.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/npc/commands/debug.txt b/npc/commands/debug.txt index b08012df..c02472ea 100644 --- a/npc/commands/debug.txt +++ b/npc/commands/debug.txt @@ -81,6 +81,20 @@ L_FocusSkills: mes "Your astral soul skill level is " + @astralsoul + "."; mes "Your raging skill level is " + @raging + "."; next; + mes ""; + mes l("Focus list:"); + mesc l("%s : %s", l("Mallard's Eye"), + (isfocused(SKILL_MALLARDS_EYE) ? l("Yes") : l("No"))); + mesc l("%s : %s", l("Brawling"), + (isfocused(SKILL_BRAWLING) ? l("Yes") : l("No"))); + mesc l("%s : %s", l("Speed"), + (isfocused(SKILL_SPEED) ? l("Yes") : l("No"))); + mesc l("%s : %s", l("Resist Ailment"), + (isfocused(SKILL_RESIST_POISON) ? l("Yes") : l("No"))); + mesc l("%s : %s", l("Astral Soul"), + (isfocused(SKILL_ASTRAL_SOUL) ? l("Yes") : l("No"))); + mesc l("%s : %s", l("Raging"), + (isfocused(SKILL_RAGING) ? l("Yes") : l("No"))); .@t=getactivatedpoolskilllist(); menuint l("Back"), -3, |