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

added LOAD command

parent 05dff557
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,14 @@ Bot_Commands["RELOAD"].command = function (target,onick,ouh,srv,lvl,cmd) {
return;
}
Bot_Commands["LOAD"] = new Bot_Command(90,false,true);
Bot_Commands["LOAD"].command = function (target,onick,ouh,srv,lvl,cmd) {
cmd.shift();
load("" + cmd[0]);
srv.o(target,"loaded " + cmd[0],"NOTICE");
return;
}
Bot_Commands["JOINCHAN"] = new Bot_Command(99,true,true);
Bot_Commands["JOINCHAN"].command = function (target,onick,ouh,srv,lvl,cmd) {
cmd.shift();
......
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