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