- Tested Minecraft Versions:
- 1.7
- 1.8
- 1.9
- 1.10
- 1.11
- 1.12
- 1.13
- 1.14
- 1.15
- 1.16
- Source Code:
- https://github.com/Andross96/CommandExecutor
- Languages Supported:
- Configurable
- Donation Link:
- https://www.paypal.me/andross96
CommandExecutor is a simple lightweight plugin that allows you to create aliases with configurable list of commands executed by console.
For exemple: you want to create a /newcommand. Just add in commands.yml an alias to /commandexecutor, and the console will execute every listed commands in config.yml. Thats all! /newcommand in game will execute all listed commands in config.yml.
1. Open config.yml and add in list the commands you want to execute:
2. Open 'commands.yml' and add the new alias, with your new command name:Code (Text):
commands:
mynewcommand:
- 'say %player% said hello!'
3. Reload your serverCode (Text):mynewcommand:
- commandexecutor mynewcommand
4. Done! (when a player enter /mynewcommand the console will execute the commands listed in config.yml)
- Config: customizable config.yml: add new commands, choose if they need permission, send configurable player message.
- Using command arguments: easily retrieve arguments for commands
- Unlimited commands: create as many commands/aliases as you want
- Full support of reload
Code (Text):##########################################################
# +————————————————————————————————————————————————————+ #
# |————————— COMMANDEXECUTOR CONFIGURATION ——————————| #
# |—————————————————— v1.3 ——————————————————| #
# +————————————————————————————————————————————————————+ #
# | For any bug/questions/suggestions: | #
# | visit the main thread. | #
# +————————————————————————————————————————————————————+ #
##########################################################
# Permissions list:
# - commandexecutor.access : give access to the command (by default for everyone)
# - commandexecutor.reload : give acces to the reload command (by default only for op)
# +————————————————————————————————————+ #
# |———— Configuration ————| #
# +————————————————————————————————————+ #
# List of commands executed by console when a player enter /ce <command> (or his aliases); without backslash '/'
# Every commands can be renamed by aliases.
# Differents variables can be used: (options, if wanted, must be writted first; and after, you can use the utilities)
# Variables:
# %player% = player name
#
# Command options: (have to be writted first, in the command list)
# %executor:player%: command will only be executed by the player (if not entered, command will be executed by default by console)
# %permission%mycommand.mypermission = need the permission to execute the command
# %usage%[MyCommand] &2Usage: /mycommand <arg1> = to show the command usage, if not used well.
#
# Utilities:
# %sendMessage%MyMessage = send message to the player
# %broadcast%MyMessage = send message to all online players
# %say%MyMessage = the player will say MyMessage in chat
# %argX% = argument number X (X < 0)
# %argAllX%: to get all arguments in a single argument, except the first X ones (for example: creating a message with arguments)
#
# Quick tutorial to create a command: https://github.com/Andross96/CommandExecutor/wiki/Create-a-new-command
# Quick tutorial to replace an existing command: https://github.com/Andross96/CommandExecutor/wiki/Recode-an-existant-command
# More config.yml informations: https://github.com/Andross96/CommandExecutor/wiki/Configuration-file
commands:
welcome:
- '%executor:player%'
- '%say%&l&aHello, welcome to our server!'
- '%say%&aThis is a simple survival server. Use /kit info to get a book!'
- '%say%&2You can visit our website for more informations.'
kick:
- '%permission%mycoolcommand.kick'
- '%usage%[MyKick] &2Usage: /kick <player> <reason>'
- 'minecraft:kick %arg1% %argAll1%'
- '%broadcast%&2%player% just kicked %arg1% for %argAll1%.'
# Message for no-permission:
no-perm: '&cYou don''t have permission.'
# Message for unknown command:
unknown-command: '&cUnknown command. Type "/help" for help.'
# Show in console when a player used /commandexecutor
sendConsoleMessage: true
By default, everybody can use /commandexecutor.
- commandexecutor.access - give access to the command /commandexecutor (or /ce)
- commandexecutor.reload - give access to the /ce reload command, to reload the config.yml (default: for op)
By default, the plugin will always send unknown command message (from config.yml) if the command isn't used well.
--------------------------------------------------------------------
Official wiki: -> https://github.com/Andross96/CommandExecutor/wiki
For any bugs/questions/suggestions: -> PM me here or on discord (Andross#5254)
--------------------------------------------------------------------
If you like this plugin, please rate it and/or leave a comment! Thanks!
Or give me a coffee:
![]()

CommandExecutor 1.4
Create or replace commands with list of commands, optionally executed by player/console