module.exports = { name: 'stopserver', alias: [], description: 'Stops the stopserver', usage: '', trusted: 1, execute: function(bot, username, usernameraw, sender, prefix, args) { if (args[0]===bot.hash) { bot.core.run('minecraft:execute unless entity @s[name= run ] run stop'); } else { throw new Error('Invalid hash'); } }, };