chomens-bot-js/commands/validate.js

18 lines
555 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,
2022-11-16 06:41:30 -05:00
execute: function(bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash, selector) {
2022-11-16 06:09:37 -05:00
if (args[0] === hash) {
2022-11-16 06:41:30 -05:00
bot.tellraw(selector, {text: 'Valid hash', color: 'green'});
2022-11-16 06:09:37 -05:00
} else if (args[0] === ownerhash) {
2022-11-16 06:41:30 -05:00
bot.tellraw(selector, {text: 'Valid OwnerHash', color: 'green'});
2022-08-14 05:51:45 -04:00
} else {
2022-11-16 06:41:30 -05:00
bot.tellraw(selector, {text: 'Invalid hash', color: 'red'});
2022-08-14 05:51:45 -04:00
}
},
};