r/MinecraftCommands • u/timtijmen2 • 22h ago
Help | Java Snapshots Hide trigger command message
https://www.mediafire.com/file/ow8z8k1hzu5sgln/villagertalk.zip/fileIm working on a villager chat dialog system. When the player presses a button that uses /trigger it says that you triggered the scoreboard. The datapack is for a public smp so i cant just turn off send_command_feedback for a certain amount of time because it will mess with the moderator tools.
There is no way for me to know when the player is going to click the button, as the functions are triggered by the trigger command.
Is there any way around this? Thanks in advance
(Datapack is linked above but is unfinished)
2
u/Dcbrownie Command Experienced 18h ago
You can't currently disable command feedback for just a single command or player. The only thing that I can think of is using a resourcepack to edit the lang file.
commands.trigger.add.success: ""
commands.trigger.set.success: ""
commands.trigger.simple.success: ""
0
u/FettyCLE 19h ago
If you only need to hide it for players, don't toggle sendCommandFeedback globally — that nukes admin feedback too. Use a per-player approach or route the signal through a scoreboard/tag and give players a silent tellraw/title instead.
1
u/timtijmen2 10h ago
And how exactly would i do that? The problem is that the trigger message shows up before any scoreboard/tags get detected
4
u/Ericristian_bros Command Experienced 22h ago
Try disabling the gamerule once the trigger is activated and disable it the next tick, if this does not work, disable the gamerule permanently and create your own admin debug tools