diff options
author | Myran2 <alternative@masschaos-gm.com> | 2012-08-31 01:26:21 +0100 |
---|---|---|
committer | Subv <s.v.h21@hotmail.com> | 2012-08-31 14:48:02 -0500 |
commit | db7b750e0c33bf75ef6943a9da149cfbb8f6f2d1 (patch) | |
tree | 2ea348e70a110946255b867b1676ab15fe9f548b /src/server/game/Scripting/ScriptLoader.cpp | |
parent | a5d977c90eaf48f0961bc7dfdee12c603963abf5 (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-x | src/server/game/Scripting/ScriptLoader.cpp | 2 |
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(); |