import { Bot } from "./Bot"; import { Auth } from "./auth/auth.plugin"; //import { Redis } from "./redis/redis.plugin"; import { dym } from "./dym/dym.plugin"; import { Database } from "./Database"; import { Blacklist } from "./blacklist/blacklist.plugin"; //var bot = new Bot('xoxb-242490537844-Y4UztNiC05iKQEGTwgmtlWvS'); var bot = new Bot("xoxb-242490537844-Q5vyKv4SEK4fRgPTObXIbM3l"); bot.connect().then(() => { console.log("connected"); bot.say("(hey|yo|sup|alright|geezer)"); }); bot .hear("hello") .ask('I AM THE BOT, TELL ME YOUR NAME.', { then: (m, resp) => m.answer = resp }) .reply(m => "alright " + m.answer) .start(); // client.send_command("incr", [ "a" ], (x, a) => { // console.log(a); // });