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/chatgroups/Chatgroups.cmd
Minenash 27cccc83f4 Standardized Permissions
- Will be test on test-production.
2018-11-16 19:09:11 -05:00

39 lines
629 B
Batchfile

command cgt {
perm utils.chatgroups;
[empty] {
help Toggles your cgtoggle status.;
type player;
run cgtoggle;
}
}
command cgkey {
perm utils.chatgroups;
[string:key] {
help Sets your chatgroup key.;
run setcgkey key;
type player;
}
}
command cgsay {
perm utils.chatgroups;
[string:message...] {
help Chats in your chatgroup.;
run cgsay message;
}
}
command cg {
perm utils.chatgroups;
join [string:group] {
help Joins a chatgroup.;
run cgjoin group;
}
leave {
help Leaves your chatgroup.;
run cgleave;
}
info {
help Displays info about your chatgroup.;
run cginfo;
}
}