diff options
| author | Alee14 <Alee14498@gmail.com> | 2017-08-13 00:31:42 -0400 |
|---|---|---|
| committer | Alee14 <Alee14498@gmail.com> | 2017-08-13 00:31:42 -0400 |
| commit | 7b9feb620adec8afd80e6040275c64932bd14c6f (patch) | |
| tree | 8415910360a31c0c3491913e6dfdfddd2353047c /aleebot.js | |
| parent | aed76662ff3f0a6e7e6a4e963edb9b0967b0c716 (diff) | |
| download | AleeBot-7b9feb620adec8afd80e6040275c64932bd14c6f.tar.gz AleeBot-7b9feb620adec8afd80e6040275c64932bd14c6f.tar.bz2 AleeBot-7b9feb620adec8afd80e6040275c64932bd14c6f.zip | |
A new command ab:ship
Diffstat (limited to 'aleebot.js')
| -rw-r--r-- | aleebot.js | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -14,7 +14,7 @@ const config = require('./absettings.json'); const prefix = "ab:"; const year = "2017"; -var abversion = "1.0.8.3"; +var abversion = "1.0.8.4"; var logsChannel = "318874545593384970"; client.on('ready', () => { @@ -96,6 +96,7 @@ client.on("message", function(message){ '**'+prefix+'suggest** You suggest things (working progress).\n' + '**'+prefix+'uptime** It tells you how long AleeBot has been on for.\n' + '**'+prefix+"ask** Go ask AleeBot a question and he will respond an answer.\n" + + '**'+prefix+"ship** It tells you who you ship with." '**'+prefix+'userinfo** Tells you your info about you.\n' + '**'+prefix+'botinvite** Lets you bring AleeBot to your server.\n' + '**'+prefix+'serverinvite** Invites you to the AleeArmy Server.\n' + @@ -279,6 +280,9 @@ commandProcessed = true; message.channel.send(`\`ERROR\` \`\`\`xl\n${clean(err)}\n\`\`\``); } } + if(command === 'ship'){ + message.channel.send(":ship: "+ message.author.username + " x " + message.guild.members.random().displayName); + } }); const clean = text => { |
