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,47 @@
command lol {
add [string:text...] {
help Lols a text.;
run addlol text;
perm utils.lol.admin;
}
del [int:id] {
help Unlols a lol.;
run dellol id;
perm utils.lol.admin;
}
set [int:id] [string:text...] {
help Relols a lol.;
run setlol id text;
perm utils.lol.admin;
}
id [int:id] {
help Lols specifically.;
run lolid id;
perm utils.lol.id;
}
list [int:page] {
help Shows lols.;
run listlols page;
perm utils.lol.list;
}
list {
help Shows lols.;
run listlolsdef;
perm utils.lol.list;
}
search [flag:-i] [string:text...] {
help Search lols.;
run searchlol -i text;
perm utils.lol.search;
}
match [flag:-i] [string:regex...] {
help Search lols. But better.;
run matchlol -i regex;
perm utils.lol.match;
}
[empty] {
help Lols.;
run saylol;
perm utils.lol;
}
}