summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/chatgroups/Chatgroups.cmd
blob: 8aabdee3f521988039fcd87cbc377e30113ca1b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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;
	}
				
}