summaryrefslogtreecommitdiff
path: root/src/com/redstoner/modules/chatgroups/Chatgroups.cmd
blob: 33fd0c56c26e8ba9c8e6f88d08c1f58ebd0dc304 (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
command cgt {
	[empty] {
		help Toggles your cgtoggle status.;
		type player;
		run cgtoggle;
	}
}
command cgkey {
	[string:key] {
		help Sets your chatgroup key.;
		run setcgkey key;
		type player;
	}
}
command cgsay {
	[string:message...] {
		help Chats in your chatgroup.;
		run cgsay message;
	}
}
command cg {
	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;
	}
				
}