Üye
İlk Yaptığım Kodu Paylaşayım Dedim Attım.
Maine Atılacak(bot.js,server.js,main.js)
Maine Atılacak(bot.js,server.js,main.js)
JavaScript:
client.on("message", async msg => {
if (msg.content == "sa") {
return msg.reply(
"\n :blush: Aleyküm Selam Hoşgeldin,Nasılsın. "
);
}
});
//iyi
client.on("message", async msg => {
if (msg.content == "iyi") {
return msg.reply(
"\n Heh,Hep Böyle İyi Ol Üzülmeni İstemem. "
);
}
});
//kötü
client.on("message", async msg => {
if (msg.content == "kötü") {
return msg.reply(
"\n Yaa, Niye Kötüsün Üzülüyorum İyi Ol. "
);
}
});