chomens-bot-js/commands/validate.js

18 lines
516 B
JavaScript
Raw Normal View History

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