Started by
Charwie
on
Topic category: Help with Minecraft modding (Java Edition)
So, i want to have it so when a play does something i.e clicks a button, they send a message in the chat
Topic category: Help with Minecraft modding (Java Edition)
So, i want to have it so when a play does something i.e clicks a button, they send a message in the chat
ayo really need help with this, would be great if anyone could help
Just use the "Execute command / in the name of event/target entity" and in the green box, type "say" then whatever you want after that.
You don't need mods for this. You can (pretty much) achieve this with a command block with a button attached.
The way to execute this via mods is basically the same; for event to be triggered you either need to add a block that runs this command when clicked or plug a similar command into a command block with a button attached.
alright the "say" thing worked, however this requires access to commands on a server / op, is there a way to pull off the same thing without the use of the say command? same results just want it to show that the player sent that message
If you have static messages you want sent, you could make blocks for each and have them send message to chat when activated by redstone or clicked on (just be sure to make a way for them to stop after the first send, nbt is your friend). If you want editable messages, recreate the /say command without the permission level.
What's your goal anyhow?