summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/chat/Chat.cmd
blob: 112a6f2c0fc0f292d4fd6b5c3887627e81b4c5c1 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
command me { 
    perm utils.chat.me; 
    [string:text...] { 
        help /me's in chat.; 
        run me text; 
    } 
} 
command action { 
    perm utils.chat.action; 
    [string:text...] { 
        help /action's in chat.; 
        run action text; 
    } 
} 
command chat {
    alias speak;
    perm utils.chat;
    [string:message...] {
        run chat message;
        help A way to speak in normal chat with normal formatting if you have ACT or CGT on.; 
    }
}
command chatn {
    alias speakn;
    perm utils.chat.chatn;
    [string:name] [string:message...] {
        run chatn name message;
        help A way to speak in normal chat with normal formatting for console users.; 
    }
}
command shrug {
    perm utils.chat.shrug;
    [string:message...] {
        run shrug message;
        help Appends the shrug emoticon to the end of your message.; 
    }
    [empty] {
        run shrugnoarg;
        help Just the shrug emoticon.; 
    }
}
command say {
    perm utils.chat.say;
    [string:message...] {  
        run say message;
        help A replacement for the default say command to make the format be more consistant.; 
    } 
}
command sayn {
    perm utils.chat.sayn;
    [string:name] [string:message...] { 
        type console;
        run sayn name message;
        help A replacement for the default say command to make the format be more consistant.; 
    }
}

command mute {
        perm utils.chat.mute;
    [string:player] {
        run mute player;
        help Mutes a player.;
    }
}

command print {
    perm utils.chat.print;
    [string:message...] { 
        run print message;
        help A way to just print something in to chat with all the formatting things a user has.; 
    } 
}

command unmute {
    perm utils.chat.mute;
    [string:player] {
        run unmute player;
        help Unmutes a player.;
    }
}

command chatonly {
    alias co;
    perm utils.chat.chatonly;
    [empty] {
        run chatonly;
        help Shows that you're only able to chat, nothing else.;
        type player;
    }
}

command resetchatformatting {
	[empty] {
		run reset_formatting;
		help Resets the formatting to defaults.;
		type console;
	}
}