Hi, do you know a way to run commands with @e @a @p @r with essentials?
it looks like essentials blocks them!
im trying to use @e @a @p @r in commands blocks but it wont work and im not getting any errors!
it looks like essentials blocks them!
im trying to use @e @a @p @r in commands blocks but it wont work and im not getting any errors!
3
I think you can just prefix the command with "minecraft:". For example:
(Of course, I've never actually *run* a server where this was a problem, so I'm not completely sure what factors affect it.)
/minecraft:tp @e[type=Sheep] @p(Of course, I've never actually *run* a server where this was a problem, so I'm not completely sure what factors affect it.)
Try having a look at this;
https://www.spigotmc.org/threads/command-block-tags-not-working.36670/
I've not got time at the moment to check any of the solutions out, but they might work for you.
https://www.spigotmc.org/threads/command-block-tags-not-working.36670/
I've not got time at the moment to check any of the solutions out, but they might work for you.
Command blocks can sudo players using target selectors like @a @e @r @p.
For example, putting this in a command block would force all players to spawn:
/sudo @a spawn
Or in this case, it also allows you to use this without using sudo:
/spawn @a
Either of these works, hope it was helpful.
For example, putting this in a command block would force all players to spawn:
/sudo @a spawn
Or in this case, it also allows you to use this without using sudo:
/spawn @a
Either of these works, hope it was helpful.
