blob: 2d10ff537ec68fd18ff8a53964ca6ee5e06906d3 (
plain) (
blame)
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
|
const Discord = require('discord.js');
exports.run = (client, message, args, config) => {
message.channel.send(":ship: "+ message.author.username + " x " + message.guild.members.random().displayName);
}
exports.conf = {
enabled: true,
guildOnly: false,
aliases: [],
permLevel: 0
};
exports.help = {
name: 'ship',
description: 'The Bot will randomize random people that you will ship with.',
usage: 'ship'
};
|