Skip to content
Snippets Groups Projects
Commit d37eed63 authored by mcmlxxix's avatar mcmlxxix
Browse files

Added "IGNORE" command (per server) and proper nick casing

parent 634a37a0
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,7 @@ Bot_Commands["JOINCHAN"].command = function (target,onick,ouh,srv,lvl,cmd) {
return;
}
srv.channel[chan]=new Bot_IRC_Channel(chan);
srv.writeout("WHO " + chan);
srv.o(target,"Ok.");
return;
}
......@@ -252,3 +253,21 @@ Bot_Commands["MODULES"].command = function (target,onick,ouh,srv,lvl,cmd) {
srv.o(target,str);
return;
}
Bot_Commands["IGNORE"] = new Bot_Command(80,true,false);
Bot_Commands["IGNORE"].command = function (target,onick,ouh,srv,lvl,cmd) {
cmd.shift();
var usr=cmd[0].toUpperCase();
if(!srv.users[usr]) {
srv.o(target,usr + " is not in my database.");
return;
}
if(srv.ignore[usr]) {
srv.o(target,usr + " removed from ignore list.");
srv.ignore[usr]=false;
return;
}
srv.o(target,usr + " added to ignore list.");
srv.ignore[usr]=true;
return;
}
......@@ -25,7 +25,7 @@ function Server_command(srv,cmdline,onick,ouh) {
break;
case "352": // WHO reply. Process into local cache.
var nick = cmd[6].toUpperCase();
if(!srv.users[nick]) srv.users[nick] = new Server_User(cmd[3] + "@" + cmd[4]);
if(!srv.users[nick]) srv.users[nick] = new Server_User(cmd[3] + "@" + cmd[4],cmd[6]);
else srv.users[nick].uh=cmd[3] + "@" + cmd[4];
srv.users[nick].channels[cmd[2].toUpperCase()]=true;
break;
......@@ -47,7 +47,7 @@ function Server_command(srv,cmdline,onick,ouh) {
break;
}
// Someone else joining.
if(!srv.users[onick.toUpperCase()]) srv.users[onick.toUpperCase()] = new Server_User(ouh);
if(!srv.users[onick.toUpperCase()]) srv.users[onick.toUpperCase()] = new Server_User(ouh,onick);
else srv.users[onick.toUpperCase()].uh=ouh;
srv.users[onick.toUpperCase()].channels[cmd[1].toUpperCase()]=true;
var lvl = srv.bot_access(onick,ouh);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment