22 lines
792 B
JavaScript
22 lines
792 B
JavaScript
this.inherits(COMMAND);
|
|
this.command = "tm";
|
|
this.allow_busy = true;
|
|
this.allow_state = true;
|
|
this.allow_die = true;
|
|
this.enter = function (me, str) {
|
|
if (!str) return;
|
|
if (me.query_temp("no_chat")) return me.notify("你目前被禁言中。");
|
|
if (str.length > 200) return me.notify("你说的太多了。");
|
|
var msg = "";
|
|
if (str[0] == "*") {
|
|
str = str.substr(1);
|
|
msg = WORLD.COMMANDS["emote"].enter(me, str);
|
|
if (msg) {
|
|
return me.send_team(JSON.stringify({ type: "msg", ch: "tm", content: msg, uid: me.id }));
|
|
}
|
|
}
|
|
|
|
msg = UTIL.htmlEncode(UTIL.replace_word(str));
|
|
me.send_team(JSON.stringify({ type: "msg", ch: "tm", content: msg, uid: me.id, name: me.name }));
|
|
me.add_temp('chat2', 1, UTIL.diff_time());
|
|
} |