summaryrefslogtreecommitdiff
path: root/npc/commands
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-13 18:07:20 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-13 18:07:20 -0300
commita6bf9c61b0358b006b20bbb33fea10bb2aab1e61 (patch)
treeaab0b43c492e769de9d55a8c8bccddfd5f8eb898 /npc/commands
parentb69bafdb60b507ef57fd32ce4ed12efeb78062b6 (diff)
downloadserverdata-a6bf9c61b0358b006b20bbb33fea10bb2aab1e61.tar.gz
serverdata-a6bf9c61b0358b006b20bbb33fea10bb2aab1e61.tar.bz2
serverdata-a6bf9c61b0358b006b20bbb33fea10bb2aab1e61.tar.xz
serverdata-a6bf9c61b0358b006b20bbb33fea10bb2aab1e61.zip
Typos, how lovely
Diffstat (limited to 'npc/commands')
-rw-r--r--npc/commands/debug.txt30
1 files changed, 15 insertions, 15 deletions
diff --git a/npc/commands/debug.txt b/npc/commands/debug.txt
index 3747156f..a033fe67 100644
--- a/npc/commands/debug.txt
+++ b/npc/commands/debug.txt
@@ -530,6 +530,15 @@ L_ResetAll:
L_close:
closeclientdialog;
return;
+}
+
+- script Debug Spell NPC32767,{
+ end;
+
+OnDebug:
+ if (!debug && getgmlevel() < CMD_DEBUG) end;
+ callfunc "Debug";
+ end;
OnSetVar:
if (getarraysize(.@atcmd_parameters$) != 3)
@@ -598,24 +607,15 @@ OnAllperms:
charcommand("@addperm bypass_nostorage");
@allperms=true;
end;
-}
-- script Debug Spell NPC32767,{
-OnDebug:
- if (!debug && getgmlevel() < CMD_DEBUG) end;
- callfunc "Debug";
- end;
-OnDeprecated:
- message strcharinfo(0), "Debug : ##3The #debug spell has been superseded by the ##B@debug##b command.";
- end;
OnInit:
registercmd "@debug", "Debug Spell::OnDebug";
- 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;
- bindatcmd "allperms", "Debug::OnAllPerms", 99, 100, 1;
+ bindatcmd "getvar", "Debug Spell::OnGetVar", 99, 99, 1;
+ bindatcmd "get-var", "Debug Spell::OnGetVar", 99, 99, 1;
+ bindatcmd "setvar", "Debug Spell::OnSetVar", 99, 99, 1;
+ bindatcmd "set-var", "Debug Spell::OnSetVar", 99, 99, 1;
+ bindatcmd "sclear", "Debug Spell::OnSClear", 99, 99, 1;
+ bindatcmd "allperms", "Debug Spell::OnAllPerms", 99, 100, 1;
end;
}