39 lines
629 B
Batchfile
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;
|
|
}
|
|
|
|
} |