Botflag & Tmpdir
This commit is contained in:
parent
cc55e93c65
commit
77341ec405
12
src/main.js
12
src/main.js
|
@ -3,7 +3,7 @@ var request = require('request');
|
||||||
var mysql = require('mysql');
|
var mysql = require('mysql');
|
||||||
var bot = require('coffea')();
|
var bot = require('coffea')();
|
||||||
|
|
||||||
cfg.server.forEach((e,i,a)=>{
|
cfg.server.forEach((e,i,a) => {
|
||||||
bot.add({
|
bot.add({
|
||||||
"name": e.name,
|
"name": e.name,
|
||||||
"host": e.host,
|
"host": e.host,
|
||||||
|
@ -20,6 +20,7 @@ cfg.server.forEach((e,i,a)=>{
|
||||||
|
|
||||||
bot.on('motd', (e) => {
|
bot.on('motd', (e) => {
|
||||||
console.log("motd von "+e.network+" erhalten");
|
console.log("motd von "+e.network+" erhalten");
|
||||||
|
bot.write('MODE f0ck +B', e.network, (c)=>{}); // Botflag
|
||||||
//if(g_server[e.network].channels.length > 0) {
|
//if(g_server[e.network].channels.length > 0) {
|
||||||
// bot.join( JSON.parse( g_server[e.network].channels ) );
|
// bot.join( JSON.parse( g_server[e.network].channels ) );
|
||||||
//}
|
//}
|
||||||
|
@ -30,10 +31,17 @@ bot.on('message', (e) => {
|
||||||
|
|
||||||
if(e.channel.getName().toString() == "#f0ck") {
|
if(e.channel.getName().toString() == "#f0ck") {
|
||||||
|
|
||||||
|
/*var u = "f0ck";
|
||||||
|
bot.whois(u, e.network, (m)=>{ });
|
||||||
|
setTimeout(() => {
|
||||||
|
var user = bot.getUser(u, e.network);
|
||||||
|
e.reply(user);
|
||||||
|
}, 2000);*/
|
||||||
|
|
||||||
|
|
||||||
if(orig.match(/(https?:\/\/)?[\w-]+(\.[\w-]+)+\.?(:\d+)?(\/\S*)?/gi)) {
|
if(orig.match(/(https?:\/\/)?[\w-]+(\.[\w-]+)+\.?(:\d+)?(\/\S*)?/gi)) {
|
||||||
var tmp = orig.match(/(https?:\/\/)?[\w-]+(\.[\w-]+)+\.?(:\d+)?(\/\S*)?/gi);
|
var tmp = orig.match(/(https?:\/\/)?[\w-]+(\.[\w-]+)+\.?(:\d+)?(\/\S*)?/gi);
|
||||||
e.reply(tmp);
|
e.reply(tmp);
|
||||||
console.log(tmp);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user