bot.me
This commit is contained in:
parent
3dd7affd96
commit
fa6ecd2164
|
@ -1,6 +1,5 @@
|
||||||
module.exports = client => {
|
module.exports = client => {
|
||||||
client._cmd.set("001", function (msg) { // welcome
|
client._cmd.set("001", function (msg) { // welcome
|
||||||
this.server.me = msg.params[0];
|
|
||||||
this.join(this.options.channels);
|
this.join(this.options.channels);
|
||||||
this.emit("data", ["connected", msg.params[1]]);
|
this.emit("data", ["connected", msg.params[1]]);
|
||||||
}.bind(client));
|
}.bind(client));
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import { getLevel } from "../../admin.js";
|
||||||
|
|
||||||
module.exports = client => {
|
module.exports = client => {
|
||||||
client._cmd.set("307", function (msg) { // whois_identified (ircd-hybrid)
|
client._cmd.set("307", function (msg) { // whois_identified (ircd-hybrid)
|
||||||
let tmpuser = {};
|
let tmpuser = {};
|
||||||
|
@ -16,7 +18,7 @@ module.exports = client => {
|
||||||
tmpuser.username = msg.params[2];
|
tmpuser.username = msg.params[2];
|
||||||
tmpuser.hostname = msg.params[3];
|
tmpuser.hostname = msg.params[3];
|
||||||
tmpuser.realname = msg.params[5];
|
tmpuser.realname = msg.params[5];
|
||||||
tmpuser.prefix = `${msg.params[2]}!${msg.params[5]}@${msg.params[3]}`;
|
tmpuser.prefix = `${msg.params[1]}!${msg.params[2]}@${msg.params[3]}`;
|
||||||
this.server.user.set(msg.params[1], tmpuser);
|
this.server.user.set(msg.params[1], tmpuser);
|
||||||
}.bind(client));
|
}.bind(client));
|
||||||
|
|
||||||
|
@ -44,6 +46,8 @@ module.exports = client => {
|
||||||
channels: tmpuser.channels || [],
|
channels: tmpuser.channels || [],
|
||||||
cached: ~~(Date.now() / 1000)
|
cached: ~~(Date.now() / 1000)
|
||||||
};
|
};
|
||||||
|
if(msg.params[0] === msg.params[1])
|
||||||
|
this.server.me = tmpuser;
|
||||||
this.server.user.set(msg.params[1], tmpuser);
|
this.server.user.set(msg.params[1], tmpuser);
|
||||||
}.bind(client));
|
}.bind(client));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user