11 lines
240 B
JavaScript
11 lines
240 B
JavaScript
this.inherits(COMMAND);
|
|
this.command = "party";
|
|
this.allow_busy = true;
|
|
this.allow_state = true;
|
|
this.allow_die = true;
|
|
this.admin = true;
|
|
this.regex = /^(\w+)(?:\s+(.+?))?(?:\s+(\w+))?$/;
|
|
this.enter = function (me, cmd, par, par2) {
|
|
|
|
}
|