1
0

Debuggers: Sorted the Info.lua commands.

This commit is contained in:
Mattes D 2016-11-26 16:47:15 +01:00
parent 4e9da46a85
commit 3c8affeee8

View File

@ -13,7 +13,7 @@ g_PluginInfo =
Version = "14", Version = "14",
Date = "2014-12-11", Date = "2014-12-11",
Description = [[Contains code for testing and debugging the server. Should not be enabled on a production server!]], Description = [[Contains code for testing and debugging the server. Should not be enabled on a production server!]],
Commands = Commands =
{ {
["/arr"] = ["/arr"] =
@ -22,6 +22,12 @@ g_PluginInfo =
Handler = HandleArrowCmd, Handler = HandleArrowCmd,
HelpString = "Creates an arrow going away from the player" HelpString = "Creates an arrow going away from the player"
}, },
["/blk"] =
{
Permission = "debuggers",
Handler = HandleBlkCmd,
HelpString = "Gets info about the block you are looking at"
},
["/compo"] = ["/compo"] =
{ {
Permission = "debuggers", Permission = "debuggers",
@ -172,6 +178,12 @@ g_PluginInfo =
Handler = HandleStarveCmd, Handler = HandleStarveCmd,
HelpString = "Sets the food level to zero" HelpString = "Sets the food level to zero"
}, },
["/teams"] =
{
Permission = "debuggers",
Handler = HandleTeamsCmd,
HelpString = "List the teams"
},
["/testwnd"] = ["/testwnd"] =
{ {
Permission = "debuggers", Permission = "debuggers",
@ -202,20 +214,8 @@ g_PluginInfo =
Handler = HandleRemoveXp, Handler = HandleRemoveXp,
HelpString = "Remove all xp" HelpString = "Remove all xp"
}, },
["/blk"] =
{
Permission = "debuggers",
Handler = HandleBlkCmd,
HelpString = "Gets info about the block you are looking at"
},
["/teams"] =
{
Permission = "debuggers",
Handler = HandleTeamsCmd,
HelpString = "List the teams"
},
}, -- Commands }, -- Commands
ConsoleCommands = ConsoleCommands =
{ {
["bbox"] = ["bbox"] =
@ -223,43 +223,43 @@ g_PluginInfo =
Handler = HandleConsoleBBox, Handler = HandleConsoleBBox,
HelpString = "Performs cBoundingBox API tests", HelpString = "Performs cBoundingBox API tests",
}, },
["download"] = ["download"] =
{ {
Handler = HandleConsoleDownload, Handler = HandleConsoleDownload,
HelpString = "Downloads a file from a specified URL", HelpString = "Downloads a file from a specified URL",
}, },
["hash"] = ["hash"] =
{ {
Handler = HandleConsoleHash, Handler = HandleConsoleHash,
HelpString = "Tests the crypto hashing functions", HelpString = "Tests the crypto hashing functions",
}, },
["inh"] = ["inh"] =
{ {
Handler = HandleConsoleInh, Handler = HandleConsoleInh,
HelpString = "Tests the bindings of the cEntity inheritance", HelpString = "Tests the bindings of the cEntity inheritance",
}, },
["loadchunk"] = ["loadchunk"] =
{ {
Handler = HandleConsoleLoadChunk, Handler = HandleConsoleLoadChunk,
HelpString = "Loads the specified chunk into memory", HelpString = "Loads the specified chunk into memory",
}, },
["preparechunk"] = ["preparechunk"] =
{ {
Handler = HandleConsolePrepareChunk, Handler = HandleConsolePrepareChunk,
HelpString = "Prepares the specified chunk completely (load / gen / light)", HelpString = "Prepares the specified chunk completely (load / gen / light)",
}, },
["sched"] = ["sched"] =
{ {
Handler = HandleConsoleSchedule, Handler = HandleConsoleSchedule,
HelpString = "Tests the world scheduling", HelpString = "Tests the world scheduling",
}, },
["testbbox"] = ["testbbox"] =
{ {
Handler = HandleConsoleTestBbox, Handler = HandleConsoleTestBbox,
@ -271,7 +271,7 @@ g_PluginInfo =
Handler = HandleConsoleTestCall, Handler = HandleConsoleTestCall,
HelpString = "Tests inter-plugin calls with various values" HelpString = "Tests inter-plugin calls with various values"
}, },
["testjson"] = ["testjson"] =
{ {
Handler = HandleConsoleTestJson, Handler = HandleConsoleTestJson,
@ -283,19 +283,19 @@ g_PluginInfo =
Handler = HandleConsoleTestTracer, Handler = HandleConsoleTestTracer,
HelpString = "Tests the cLineBlockTracer", HelpString = "Tests the cLineBlockTracer",
}, },
["testurlclient"] = ["testurlclient"] =
{ {
Handler = HandleConsoleTestUrlClient, Handler = HandleConsoleTestUrlClient,
HelpString = "Tests the cUrlClient", HelpString = "Tests the cUrlClient",
}, },
["testurlparser"] = ["testurlparser"] =
{ {
Handler = HandleConsoleTestUrlParser, Handler = HandleConsoleTestUrlParser,
HelpString = "Tests the cUrlParser", HelpString = "Tests the cUrlParser",
}, },
["uuid"] = ["uuid"] =
{ {
Handler = HandleConsoleUuid, Handler = HandleConsoleUuid,