HomeJavaModsLet Me Click And Send
Let Me Click And Send
ModsJava

Let Me Click And Send

by fallen-breath · on Modrinth

A simple Minecraft client-side mod, that reverts the `run_command` click event restriction introduced in 1.19.1-rc1, so non-command messages can be sent…

Which build do you need?

This mod ships a separate file for every mod loader and every version of the game. Pick both, then download — the wrong build installs fine and then does nothing in the game.

Mod loader

Minecraft version

⬇ Download for 26.1–26.2 · Fabric⬇ Download for 1.21.6–1.21.11 · Fabric⬇ Download for 1.21.5 · Fabric⬇ Download for 1.21.3–1.21.4 · Fabric⬇ Download for 26.1–26.2 · Forge⬇ Download for 1.21.6–1.21.11 · Forge⬇ Download for 1.21.5 · Forge⬇ Download for 1.21.3–1.21.4 · Forge⬇ Download for 26.1–26.2 · NeoForge⬇ Download for 1.21.6–1.21.11 · NeoForge⬇ Download for 1.21.5 · NeoForge⬇ Download for 1.21.2–1.21.4 · NeoForge
I don't know my version or loader
Open the Minecraft launcher and look at the profile you play on — it names both, like fabric-loader-1.21.4. The version also shows in the bottom-right corner of the game's main menu.
No loader in the profile name? Then it's plain Minecraft, and these mods won't run — you need Fabric or NeoForge installed first.
Let Me Click And Send — screenshot 1

A simple Minecraft client-side mod, that reverts the run_command click event restriction introduced in 1.19.1-rc1, so non-command messages can be sent freely as a chat message via run_command click event again

If you want a solution without user awareness, here's a server-side only mod that does the same thing: LetMeClickAndSendForServer

Mod Side Advantage Disadvantage
LetMeClickAndSend client Exactly the same behavior as pre mc1.19.1 Needs to be installed on all players' clients
LetMeClickAndSendForServer server No need to install on client Reduces maximum chat message length by 7

Example

Let's run the following command, and then click the shown text

# Minecraft [1.7, 1.21.5)
/tellraw @a {"text":"click me to send \"hi\"","clickEvent":{"action":"run_command","value":"hi"}}

In vanilla 1.19.1 ~ 1.21.4, after clicking, you are not able to say anything since hi is not a valid command (not starts with /)

With this mod, after clicking, you will automatically send a hi chat message to the server, which is the same behavior as the previous Minecraft versions

MC 1.21.5+

Since MC 1.21.5, the run_command behavior has changed a lot

First is the change in command syntax, which has little impact:

# Minecraft [1.21.5, ~)
/tellraw @a {"text":"click me to send \"hi\"","click_event":{"action":"run_command","command":"hi"}}

Next is the change in behavior, which has a greater impact:

It's no longer possible to correctly distinguish between "a run_command for sending chat message" and "a run_command for sending command"

As a workaround, LetMeClickAndSend for MC >= 1.21.5 will only allow certain commands to bypass the vanilla check and always be click-and-send-able. By default, only command value starting with !!, which is a commonly-used command prefix in MCDReforged plugin ecosystem, will be allowed

A config file located at ./config/letmeclickandsend/config.json is added for customizing the bypass behavior

{
    "sendChatPattern": "!!.*"
}

The sendChatPattern should be a valid regex pattern. All command values that fully match the pattern will be as chat messages

To test with the default configuration, you can use:

/tellraw @a {"text":"click me to send \"!!MCDR\"","click_event":{"action":"run_command","command":"!!MCDR"}}

Requirements

It's a client-side only mod. It requires 0 extra dependency

Requirements:

Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more