Archived
0

Converted Modules to gradle

This commit is contained in:
David
2018-11-07 23:50:06 +01:00
parent e86c52ef7c
commit 604cf01967
104 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
command log {
perm utils.logs;
alias logs;
search [string:file(s)] [string:search...] {
run search_logs file(s) search;
help Performs the specified search operation on the logs. Wildcards are supported in filenames. Search string is a regex.;
type player;
}
format {
run show_format;
help Displays your current log output format with an example result.;
type player;
}
format_help {
run show_format_help;
help Displays all available placeholders for the formatting;
type player;
}
option_help {
run show_option_help;
help Displays all available options.;
type player;
}
set format [string:format] {
run set_format format;
help Sets a new log output format;
type player;
}
set [string:option] [boolean:state] {
run set_option option state;
help Allows you to enable or disable various features such as sumamries, live progress updates, etc...;
type player;
}
}