diff options
| author | Alee14 <alee14498@gmail.com> | 2017-03-27 17:17:49 -0400 |
|---|---|---|
| committer | Alee14 <alee14498@gmail.com> | 2017-03-27 17:17:49 -0400 |
| commit | 7d9ed5aee6fc3d5a3ae9968f5dcd295d9f5b85f7 (patch) | |
| tree | 1d601be11acb5039fd99ae3b440309e254245b76 | |
| parent | 5a90919f4fa59bfd1e481ea8ba0bc4e42b1b6cf5 (diff) | |
| download | AleeBot-7d9ed5aee6fc3d5a3ae9968f5dcd295d9f5b85f7.tar.gz AleeBot-7d9ed5aee6fc3d5a3ae9968f5dcd295d9f5b85f7.tar.bz2 AleeBot-7d9ed5aee6fc3d5a3ae9968f5dcd295d9f5b85f7.zip | |
Added new command: aleebot:owner!
| -rw-r--r-- | bot.js | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -31,7 +31,14 @@ client.on('message', message => { client.on('message', message => { if(message.content === 'aleebot:help'){ - message.channel.sendMessage ('aleebot:profile\naleebot:updates\naleebot:ping\naleebot:pong'); + message.channel.sendMessage ('aleebot:profile\naleebot:updates\naleebot:ping\naleebot:pong\naleebot:owner'); + } + +}); + +client.on('message', message => { + if(message.content === 'aleebot:owner'){ + message.reply('The person who made this is Alee14!'); } }); |
