
Let Me Click And Send
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 via `run_command` click event again
Обновлён 16 апреля 2026 г. · опубликован 29 октября 2022 г.
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:
- The
commandvalue is always valid, regardless of whether it starts with a/or not - The client will strip the
/prefix from thecommandvalue and send the remaining string as a command
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:
- Minecraft >= 1.19.1
Версии
| Версия | Канал | Игра | Загрузчики | Дата | Скачать |
|---|---|---|---|---|---|
| v1.2.2-mc1.21.11-neoforge | Релиз | 1.21.8, 1.21.9, 1.21.10, 1.21.11 | neoforge | 16 апреля 2026 г. | .jar (41 КБ) |
| v1.2.2-mc1.21.5-neoforge | Релиз | 1.21.5 | neoforge | 16 апреля 2026 г. | .jar (41 КБ) |
| v1.2.2-mc1.20.6-neoforge | Релиз | 1.21.1, 1.21.2, 1.21.3, 1.21.4 | neoforge | 16 апреля 2026 г. | .jar (38 КБ) |
| v1.2.2-mc1.20.4-forge | Релиз | 1.20.1, 1.20.2, 1.20.3, 1.20.4 | forge | 16 апреля 2026 г. | .jar (38 КБ) |
| v1.2.2-mc1.19.4-forge | Релиз | 1.19.3, 1.19.4 | forge | 16 апреля 2026 г. | .jar (38 КБ) |
| v1.2.2-mc1.19.2-forge | Релиз | 1.19.1, 1.19.2 | forge | 16 апреля 2026 г. | .jar (38 КБ) |
| v1.2.2-mc26.1.2 | Релиз | 26.1, 26.1.1, 26.1.2, 26.2 | fabric, forge, neoforge | 16 апреля 2026 г. | .jar (42 КБ) |
| v1.2.2-mc1.21.5-fabric | Релиз | 1.21.5 | fabric | 16 апреля 2026 г. | .jar (41 КБ) |
| v1.2.2-mc1.21.11-fabric | Релиз | 1.21.8, 1.21.9, 1.21.10, 1.21.11 | fabric | 16 апреля 2026 г. | .jar (41 КБ) |
| v1.2.2-mc1.19.2-fabric | Релиз | 1.19.1, 1.19.2 | fabric | 16 апреля 2026 г. | .jar (38 КБ) |
| v1.2.2-mc1.19.4-fabric | Релиз | 1.19.3, 1.19.4 | fabric | 16 апреля 2026 г. | .jar (38 КБ) |
| v1.2.2-mc1.20.4-fabric | Релиз | 1.20.3, 1.20.4 | fabric | 16 апреля 2026 г. | .jar (38 КБ) |
| v1.2.2-mc1.20.6-fabric | Релиз | 1.21.1, 1.21.2, 1.21.3, 1.21.4 | fabric | 16 апреля 2026 г. | .jar (38 КБ) |
| v1.2.1-mc1.21.11-forge | Релиз | 1.21.8, 1.21.9, 1.21.10, 1.21.11 | forge | 13 декабря 2025 г. | .jar (41 КБ) |
| v1.2.1-mc1.20.6-neoforge | Релиз | 1.21.1, 1.21.2, 1.21.3, 1.21.4 | neoforge | 13 декабря 2025 г. | .jar (38 КБ) |
Показаны последние 15 из 63 версий. Все версии — на Modrinth.
Ченджлог
v1.2.2-mc1.21.11-neoforgeРелиз1.21.9, 1.21.10, 1.21.11 · 16 апреля 2026 г.
- MC 26.1 support
Build Information
- File name:
LetMeClickAndSend-v1.2.2-mc1.21.11-neoforge.jar - SHA-256:
bb765e19e74832917818c9b74a613694efb2f9e1df966c31408dd82f2f8675dd - Built from: https://github.com/Fallen-Breath/LetMeClickAndSend/actions/runs/24525928603
v1.2.2-mc1.21.5-neoforgeРелиз1.21.5 · 16 апреля 2026 г.
- MC 26.1 support
Build Information
- File name:
LetMeClickAndSend-v1.2.2-mc1.21.5-neoforge.jar - SHA-256:
55dce36832ee6f7e277ac3682c37bb8835ba6f4d6101762491ae47e0bd488d0c - Built from: https://github.com/Fallen-Breath/LetMeClickAndSend/actions/runs/24525928603
v1.2.2-mc1.20.6-neoforgeРелиз1.21.2, 1.21.3, 1.21.4 · 16 апреля 2026 г.
- MC 26.1 support
Build Information
- File name:
LetMeClickAndSend-v1.2.2-mc1.20.6-neoforge.jar - SHA-256:
f0ee5ab0041d3d38fe216097a40aa60f0535289fa1165bee7dbd64e6ef77c84d - Built from: https://github.com/Fallen-Breath/LetMeClickAndSend/actions/runs/24525928603
v1.2.2-mc1.20.4-forgeРелиз1.20.2, 1.20.3, 1.20.4 · 16 апреля 2026 г.
- MC 26.1 support
Build Information
- File name:
LetMeClickAndSend-v1.2.2-mc1.20.4-forge.jar - SHA-256:
90bec9031e61f95fa27fc0b8248d2f0045dbffa94268d11486de51ce40041060 - Built from: https://github.com/Fallen-Breath/LetMeClickAndSend/actions/runs/24525928603
v1.2.2-mc1.19.4-forgeРелиз1.19.3, 1.19.4 · 16 апреля 2026 г.
- MC 26.1 support
Build Information
- File name:
LetMeClickAndSend-v1.2.2-mc1.19.4-forge.jar - SHA-256:
48b832e64f23d613f2ea96fba2f881d486a8e0bea83fdecb7007404c00b455ba - Built from: https://github.com/Fallen-Breath/LetMeClickAndSend/actions/runs/24525928603
v1.2.2-mc1.19.2-forgeРелиз1.19.1, 1.19.2 · 16 апреля 2026 г.
- MC 26.1 support
Build Information
- File name:
LetMeClickAndSend-v1.2.2-mc1.19.2-forge.jar - SHA-256:
9f68bf032e357fc183fc00c8c39eba6ad573313a5a984e8017110593dd1a99c0 - Built from: https://github.com/Fallen-Breath/LetMeClickAndSend/actions/runs/24525928603
v1.2.2-mc26.1.2Релиз26.1.1, 26.1.2, 26.2 · 16 апреля 2026 г.
- MC 26.1 support
Build Information
- File name:
LetMeClickAndSend-v1.2.2-mc26.1.2.jar - SHA-256:
01b0b2d46a685715bcacd17f8664d3f88a4aa10ff4d0faf9dd248b9db5f22f04 - Built from: https://github.com/Fallen-Breath/LetMeClickAndSend/actions/runs/24525928603
v1.2.2-mc1.21.5-fabricРелиз1.21.5 · 16 апреля 2026 г.
- MC 26.1 support
Build Information
- File name:
LetMeClickAndSend-v1.2.2-mc1.21.5-fabric.jar - SHA-256:
fbb3497fd271f90ea93321db340575904e937cf654225bc4007c3483746f897b - Built from: https://github.com/Fallen-Breath/LetMeClickAndSend/actions/runs/24525928603
Полная история изменений — на Modrinth.
Комментарии
Загружаем…
