mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-05 13:53:12 +02:00
30 lines
1.2 KiB
JavaScript
30 lines
1.2 KiB
JavaScript
const commando = require('discord.js-commando');
|
|
const romanNumeralConverter = require('roman-numeral-converter-mmxvi');
|
|
|
|
module.exports = class RomanCommand extends commando.Command {
|
|
constructor(Client) {
|
|
super(Client, {
|
|
name: 'roman',
|
|
group: 'numedit',
|
|
memberName: 'roman',
|
|
description: 'Converts numbers to Roman Numerals. (;roman 2)',
|
|
examples: [';roman 2']
|
|
});
|
|
}
|
|
|
|
async run(message) {
|
|
if (message.channel.type !== 'dm') {
|
|
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
|
|
}
|
|
console.log(`[Command] ${message.content}`);
|
|
let numberToRoman = message.content.split(" ").slice(1).join(" ");
|
|
let romanInterger = Number(numberToRoman);
|
|
if (romanInterger > 1000000) {
|
|
message.channel.send(':x: Error! Number is too high!');
|
|
}
|
|
else {
|
|
message.channel.send(romanNumeralConverter.getRomanFromInteger(romanInterger)).catch(error => message.channel.send(':x: Error! Something went wrong! Perhaps you entered nothing?'));
|
|
}
|
|
}
|
|
};
|