chomens-bot-js/commands/validate.js
2022-11-16 18:41:30 +07:00

17 lines
555 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, config, hash, ownerhash, selector) {
if (args[0] === hash) {
bot.tellraw(selector, {text: 'Valid hash', color: 'green'});
} else if (args[0] === ownerhash) {
bot.tellraw(selector, {text: 'Valid OwnerHash', color: 'green'});
} else {
bot.tellraw(selector, {text: 'Invalid hash', color: 'red'});
}
},
};