Archived
0
This repository has been archived on 2024-08-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Modules/src/main/java/com/redstoner/modules/adminchat/Adminchat.cmd
Minenash 27cccc83f4 Standardized Permissions
- Will be test on test-production.
2018-11-16 19:09:11 -05:00

40 lines
582 B
Batchfile

command ac {
perm utils.ac;
[string:message...] {
help Sends a message in Admin Chat;
run ac_msg message;
}
}
command acn {
perm utils.ac;
[string:name] [string:message...] {
help Sends a message in Admin Chat;
type console;
run acn_msg name message;
}
}
command ackey {
perm utils.ac;
[string:key] {
help Sets your Admin Chat key;
type player;
run setackey key;
}
}
command act {
perm utils.ac;
on {
help Turns on act;
run act_on;
}
off {
help Turns off act;
run act_off;
}
[empty] {
help toggles Admin Chat;
run act;
}
}