woden.js
v2.0.4
Published
Woden APP için bot yapma modülü
Downloads
7
Readme
Yüklemek İçin
npm install woden.js
Örnek
const Woden = require("woden.js");
const bot = new Woden.Bot();
bot.on("connect", data => {
console.log(`${bot.user.username} is active! Connect time: ${data.time}`);
});
bot.on("message", message => {
if(message.content == "sa") {
bot.send(message.roomid, "as", "image link");
};
});
bot.login("Woden Bot Key");