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,42 @@
command ac {
[string:message...] {
help Sends a message in Admin Chat;
perm utils.ac;
run ac_msg message;
}
}
command acn {
[string:name] [string:message...] {
help Sends a message in Admin Chat;
perm utils.ac;
type console;
run acn_msg name message;
}
}
command ackey {
[string:key] {
help Sets your Admin Chat key;
perm utils.ac;
type player;
run setackey key;
}
}
command act {
on {
help Turns on act;
perm utils.ac;
run act_on;
}
off {
help Turns off act;
perm utils.ac;
run act_off;
}
[empty] {
help toggles Admin Chat;
perm utils.ac;
run act;
}
}