How can I remove the text when commands have been executed?
We need more information to be able to help you specifically?
Which text exactly? Show us an example. Standard text? A text from a plugin? Offline? On-line?
When a command is executed, for example, the text You have received barrier * 1 appears or Felix has been teported there. I can't do that with words but I hope you understand now
Have a look here
https://minecraft-de.gamepedia.com/...l/gamerule
- sendCommandFeedback
If it doesn't help, then I don't know what else you can do.
Texts are in a message.yml or in the .jar of the respective plugin. To be able to process both correctly you need at least Notepad ++ and 7zip. In a message.yml you can delete the unwanted text so that only the checkmarks like '' or "" are visible.
You open a .jar with 7zip - edit externally and delete what annoys you in the language file and only leave the '' or "".
Never completely delete the message.yml or language file, then the plugin or the .jar will no longer work.
Ignorance can lead to gross mistakes and should only be changed by experienced players.
Easily change the matching gamerules:
sendCommandFeedback for commands that were executed in the chat
commandBlockOutput for commands from command blocks
You would have to set both to false:
/ gamerule sendCommandFeedback false
/ gamerule commandBlockOutput false
Thank you very much you really helped me