diff options
Diffstat (limited to 'npc/commands')
-rw-r--r-- | npc/commands/debug.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/commands/debug.txt b/npc/commands/debug.txt index 58764aec9..a01a20034 100644 --- a/npc/commands/debug.txt +++ b/npc/commands/debug.txt @@ -116,12 +116,19 @@ OnGetVar: dispbottom(.@mg$); end; +OnSClear: + sc_end SC_ALL; + sc_end SC_DAILYSENDMAILCNT; + dispbottom l("Status Condition Cleared"); + end; + OnInit: bindatcmd "debug", "@debug::OnCall", 99, 99, 1; bindatcmd "getvar", "@debug::OnGetVar", 99, 99, 1; bindatcmd "get-var", "@debug::OnGetVar", 99, 99, 1; bindatcmd "setvar", "@debug::OnSetVar", 99, 99, 1; bindatcmd "set-var", "@debug::OnSetVar", 99, 99, 1; + bindatcmd "sclear", "@debug::OnSClear", 99, 99, 1; end; } |