aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Scripting/ScriptLoader.cpp
diff options
context:
space:
mode:
authorMyran2 <alternative@masschaos-gm.com>2012-08-31 01:26:21 +0100
committerNay <dnpd.dd@gmail.com>2012-08-31 01:26:21 +0100
commit908ae08a0aed76c3d6a1a66848c9811ece44a1e7 (patch)
tree12c94fea311a800a95e2520035f5e97a1f1477bf /src/server/game/Scripting/ScriptLoader.cpp
parente3d9768a50a3b2b700d65e0cc96e697a5c9d22dc (diff)
Scripts/Commands: Create a new group of commands, .cheat, and add new and move old commands to it:
Changes: - .explorecheat is now .cheat explore - .waterwalk is now .cheat waterwalk - .taxicheat is now .cheat taxi New commands: - .cheat god - .cheat casttime - .cheat cooldown - .cheat power (Descriptions available in the SQL file / in-game) Inspiration on ArcEmu commands Closes #7569
Diffstat (limited to 'src/server/game/Scripting/ScriptLoader.cpp')
-rwxr-xr-xsrc/server/game/Scripting/ScriptLoader.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/game/Scripting/ScriptLoader.cpp b/src/server/game/Scripting/ScriptLoader.cpp
index 9d983542fea..1848250ec8e 100755
--- a/src/server/game/Scripting/ScriptLoader.cpp
+++ b/src/server/game/Scripting/ScriptLoader.cpp
@@ -50,6 +50,7 @@ void AddSC_ban_commandscript();
void AddSC_bf_commandscript();
void AddSC_cast_commandscript();
void AddSC_character_commandscript();
+void AddSC_cheat_commandscript();
void AddSC_debug_commandscript();
void AddSC_disable_commandscript();
void AddSC_event_commandscript();
@@ -666,6 +667,7 @@ void AddCommandScripts()
AddSC_bf_commandscript();
AddSC_cast_commandscript();
AddSC_character_commandscript();
+ AddSC_cheat_commandscript();
AddSC_debug_commandscript();
AddSC_disable_commandscript();
AddSC_event_commandscript();