mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
11 lines
397 B
JavaScript
11 lines
397 B
JavaScript
/* eslint-disable max-len */
|
|
module.exports = {
|
|
name: 'gamemodeall',
|
|
alias: [],
|
|
description: 'Gamemode everyone',
|
|
usage: '<hash> <gamemode>',
|
|
trusted: 1,
|
|
execute: function(bot, username, usernameraw, 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}]`);
|
|
},
|
|
};
|