summaryrefslogtreecommitdiff
path: root/npc/commands/debug.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/commands/debug.txt')
-rw-r--r--npc/commands/debug.txt7
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;
}