Converted Modules to gradle
This commit is contained in:
81
src/main/java/com/redstoner/modules/chat/Chat.cmd
Normal file
81
src/main/java/com/redstoner/modules/chat/Chat.cmd
Normal file
@@ -0,0 +1,81 @@
|
||||
command me {
|
||||
perm utils.me;
|
||||
[string:text...] {
|
||||
help /me's in chat.;
|
||||
run me text;
|
||||
}
|
||||
}
|
||||
command action {
|
||||
perm utils.action;
|
||||
[string:text...] {
|
||||
help /action's in chat.;
|
||||
run action text;
|
||||
}
|
||||
}
|
||||
command chat {
|
||||
alias speak;
|
||||
[string:message...] {
|
||||
perm utils.chat;
|
||||
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;
|
||||
[string:name] [string:message...] {
|
||||
perm utils.chatn;
|
||||
run chatn name message;
|
||||
help A way to speak in normal chat with normal formatting for console users.;
|
||||
}
|
||||
}
|
||||
command shrug {
|
||||
[string:message...] {
|
||||
perm utils.shrug;
|
||||
run shrug message;
|
||||
help Appends the shrug emoticon to the end of your message.;
|
||||
}
|
||||
[empty] {
|
||||
perm utils.shrug;
|
||||
run shrugnoarg;
|
||||
help Just the shrug emoticon.;
|
||||
}
|
||||
}
|
||||
command say {
|
||||
[string:message...] {
|
||||
perm utils.say;
|
||||
run say message;
|
||||
help A replacement for the default say command to make the format be more consistant.;
|
||||
}
|
||||
}
|
||||
command sayn {
|
||||
[string:name] [string:message...] {
|
||||
perm utils.sayn;
|
||||
type console;
|
||||
run sayn name message;
|
||||
help A replacement for the default say command to make the format be more consistant.;
|
||||
}
|
||||
}
|
||||
|
||||
command mute {
|
||||
[string:player] {
|
||||
perm utils.chat.admin;
|
||||
run mute player;
|
||||
help Mutes a player.;
|
||||
}
|
||||
}
|
||||
|
||||
command print {
|
||||
[string:message...] {
|
||||
perm utils.print;
|
||||
run print message;
|
||||
help A way to just print something in to chat with all the formatting things a user has.;
|
||||
}
|
||||
}
|
||||
|
||||
command unmute {
|
||||
[string:player] {
|
||||
perm utils.chat.admin;
|
||||
run unmute player;
|
||||
help Unmutes a player.;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user