mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
16 lines
518 B
JavaScript
16 lines
518 B
JavaScript
module.exports = {
|
|
name: 'validate',
|
|
description: 'Validates hash',
|
|
alias: [],
|
|
usage: '<hash>',
|
|
trusted: 1,
|
|
execute (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' })
|
|
}
|
|
}
|
|
}
|