Essentials commands in command blocks (Handling selectors) #4916
-
It would be very nice to be able to use Essentials commands in command blocks again. Apparently this used to be a feature, but it is gone now. Having this feature would allow server owners to do more with less plugins. Not only that, it also affects existing commands such as /tell. Selectors I have tried that resulted in no player being found: Selectors that did work but affected all players: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Selectors have never been a feature native to Essentials. It used to be possible on older versions, but only because the server allowed it. It's unlikely that we will be adding explicit support for selectors ourselves in the foreseeable future, but you can download plugins like CommandHook which restore the behavior of allowing selectors in plugins. Note that You can also run vanilla Minecraft commands even with Essentials installed, by prepending |
Beta Was this translation helpful? Give feedback.
Selectors have never been a feature native to Essentials. It used to be possible on older versions, but only because the server allowed it.
It's unlikely that we will be adding explicit support for selectors ourselves in the foreseeable future, but you can download plugins like CommandHook which restore the behavior of allowing selectors in plugins.
Note that
*
and**
are not vanilla selectors, these have always existed in Essentials.You can also run vanilla Minecraft commands even with Essentials installed, by prepending
minecraft:
to the command. For example,/minecraft:tell
instead of/essentials:tell
or just/tell
(which defaults to plugin commands over vanilla).