11 lines
201 B
JavaScript
11 lines
201 B
JavaScript
|
|
this.inherits(COMMAND);
|
|
this.command = "user";
|
|
this.allow_busy = true;
|
|
this.allow_state = true;
|
|
this.allow_die = true;
|
|
this.allow_level = 3;
|
|
const num_reg = /\d+/;
|
|
this.enter = function (me, arg) {
|
|
|
|
} |