module.exports = { name: 'validate', description:['validate in the bot'], hashOnly: true, consoleOnly:false, ownerOnly:false, aliases:['val'], execute (context) { const source = context.source const bot = context.bot const hash = bot.hash const args = context.arguments const ownerhash = bot.owner if (args[0] === hash) { source.sendFeedback({ text: 'Valid Hash', color: 'green' }) } else if (args[0] === ownerhash) { source.sendFeedback({text: 'Valid OwnerHash', color:'green'}) } } } //if (args[0] === hash) {