chomens-bot-js/commands/gamemodeall.js

10 lines
343 B
JavaScript

module.exports = {
name: 'gamemodeall',
alias: [],
description: 'Gamemode everyone',
usage: '<hash> <gamemode>',
trusted: 1,
execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
bot.core.run(`minecraft:execute unless entity @s[name= run ] run gamemode ${args[1]} @a[name=!${bot.username}]`)
}
}