Archived
0
This repository has been archived on 2024-08-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Modules/src/com/redstoner/modules/chat/Chat.cmd
minenash c79db9950a Moved /me, /chat(/speak), /shrug, /say, /sayn, and the Normal Chat Event
into it's own module called Chat. Moved the Illumination Module into the
Misc Module.
2018-01-17 13:19:11 -05:00

37 lines
938 B
Batchfile

command me {
perm utils.me;
[string:text...] {
help /me's in chat.;
run me 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 shrug {
[string:message...] {
perm utils.shrug;
run shrug message;
help Appends the shrug emoticon to the end of your message.;
}
}
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.;
}
}