-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
45 lines (34 loc) · 1.23 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
const Discord = require('discord.js');
const bot = new Discord.Client();
const token = '';
bot.on('ready', () =>{
console.log('This bot is online!');
bot.user.setActivity('| l!help | Subscribe to my channel! youtube.com/mrzlionz :) |')
})
bot.on('message', msg=>{
if(msg.content === "l!hello"){
msg.reply('Whats good nibba');
}
if(msg.content === "l!help"){
msg.reply("The Lionz-Bot github page and its commands can be found at: <https://github.com/Jakkzero/LionzBot>");
}
if(msg.content === "l!test"){
msg.reply("This bot is working as it's supposed to! (probably)");
}
if(msg.content === "l!balanced"){
msg.reply('Perfectly balanced, like all things should be. <:thanosxd:574302028331745280>')
}
if(msg.content === "l!youtube"){
msg.reply("<https://youtube.com/mrzlionz>")
}
if(msg.content === "l!twitch"){
msg.reply('<https://twitch.tv/yttlionz>')
}
if(msg.content === 'l!pickle'){
msg.reply('<https://www.youtube.com/watch?v=l6nc-CEuwVQ>')
}
if(msg.content === 'l!die'){
msg.reply(' No u, <:thanosxd:574302028331745280>')
}
})
bot.login(token);