chomens-bot-js/commands/gamemodeall.js

12 lines
397 B
JavaScript
Raw Normal View History

2022-08-14 05:51:45 -04:00
/* eslint-disable max-len */
module.exports = {
name: 'gamemodeall',
alias: [],
description: 'Gamemode everyone',
usage: '<hash> <gamemode>',
trusted: 1,
2022-11-16 06:41:30 -05:00
execute: function(bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash, selector) {
2022-11-23 06:45:06 -05:00
bot.core.run(`minecraft:execute unless entity @s[name= run ] run gamemode ${args[1]} @a[name=!${bot.username}]`);
2022-08-14 05:51:45 -04:00
},
};