Modern chili console for the Spring Engine.
Basic configuration can be done in the luaui/config/globals.lua file. It is possible to set console size, position, color of the suggestions and more.
Chonsole can also be extended by creating custom commands and contexes. This is done by creating extension files and putting them in the exts folder. Chonsole already comes with four extensions:
Each extension can have the following:
The command table has the following format:
commands = {
{
command = string, -- name of the command to be displayed
description = string, -- description used to explain the command to the user
cheat = boolean, -- whether command requires cheat to be executed (extensions don't need to very if cheating is enabled, this is handled by chonsole automatically)
suggestions = function(cmd, cmdParts)
local suggestions = {}
-- this function is used to generate the (sub)suggestions for the command, optional
-- this is done to present the user a list of valid (or suggested) arguments
return suggestions
end,
exec = function(command, cmdParts)
-- function that executes the command, mandatory
end,
execs = function(luaCommandStr)
-- function that executes the command in a synced gadget, optional
-- in case this is wanted, the user should first send required data using Sync(...) in the exec command
end,
execu = function(luaCommandStr)
-- function that executes the command in an unsynced gadget, optional
-- in case this is wanted, the user should first send required data using Unsync(...) in the execs command
end,
},
-- list of commands
}
The context table has the following format:
context = {
{
name = string, -- name of the context, used internally to differentiate between them
parse = function(txt)
-- function that returns true if the matching string (starting with /) belongs to the given context, mandatory
-- for example, it could be used to match all strings starting with /a as belonging to the "allies" context
end,
exec = function(str, context)
-- function that executes the string in the given context, mandatory
-- this is used to execute the text following the command, e.g. in the case of "allies", it should send the entered text as a chat command to all allies
end
},
-- list of contexts
}
For additional details, check the existing examples.