chomens-bot-js/commands/validate.js
2022-11-07 19:26:38 +07:00

17 lines
516 B
JavaScript

/* eslint-disable max-len */
module.exports = {
name: 'validate',
description: 'Validates hash',
alias: [],
usage: '<hash>',
trusted: 1,
execute: function(bot, username, usernameraw, sender, prefix, args) {
if (args[0] === bot.hash) {
bot.tellraw('@a', {text: 'Valid hash', color: 'green'});
} else if (args[0] === bot.ownerHash) {
bot.tellraw('@a', {text: 'Valid OwnerHash', color: 'green'});
} else {
bot.tellraw('@a', {text: 'Invalid hash', color: 'red'});
}
},
};