- This is a simple Shout plugin that can be used to broadcast messages.
- Currently still under development... so there are many things that cannot be configured. Please look forward to future updates.
- As I am a beginner, this plugin might not be perfect, but I will keep working to create more interesting plugins in the future. If you have any questions or suggestions, feel free to let me know! Thank you!

Broadcast Features:
Code (Text):
/shout <message> - Send a broadcast message.
/shout set <time> <message> - Schedule a broadcast message.
/shout cancel - Cancel a broadcast message.
/shout list - View the list of planned broadcasts.
/shout setautotime <name> <time> <message> - Set a scheduled automatic broadcast message.
/shout cancelautotime <name> - Cancel the scheduled broadcast message.
/shout autotimelist - Display the current broadcast schedule.
/shout setsounds - Set the sound effect for broadcasts.
/shout set <time> <message> - Schedule a broadcast message.
/shout cancel - Cancel a broadcast message.
/shout list - View the list of planned broadcasts.
/shout setautotime <name> <time> <message> - Set a scheduled automatic broadcast message.
/shout cancelautotime <name> - Cancel the scheduled broadcast message.
/shout autotimelist - Display the current broadcast schedule.
/shout setsounds - Set the sound effect for broadcasts.
Additional Features:
Code (Text):
Use /whisper <player> <message> to send a private message to another player.
(Alternatively, you can use /w <player> <message> as a shortcut.)
Use /reply <message> to respond to the last player who sent you a message.
(Alternatively, you can use /r <message> as a shortcut.)
(Alternatively, you can use /w <player> <message> as a shortcut.)
Use /reply <message> to respond to the last player who sent you a message.
(Alternatively, you can use /r <message> as a shortcut.)
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Spoiler: Commands&Usage
Spoiler: Config.yml
Code (YAML):
# # ===================================================
# # 企鵝Penguin的公告插件V2
# # The Shout Plugin Version 2 by.Penguin
# # ===================================================
# # 訊息顏色/Message Color | 預設:白色(&f)/Default: White(&f)
# # 可以透過顏色代碼來讓訊息有顏色!/You can use color codes to make the messages colorful!
shout-prefix : '&6 [Shout ]'
message-color : '&f'
countdown-message : '&eShout will be broadcasted in &6 {count }&e seconds ...'
#
# # 是否顯示自動公告的倒數3秒訊息/Show countdown message for auto shouts?
# # 預設: false/Default: false
# # 如果設為 true,自動公告將會顯示倒數3秒的訊息/If set to true, the automatic announcement will display a countdown message of 3 seconds.
show-countdown : false
#
# # 預設的 Shout 音效/Default Shout Sound
# # 玩家可以透過 /shout setsounds 指令選擇音效
# # Players can use the /shout setsounds command to select a sound
# # 預設音效為 ENTITY_PLAYER_LEVELUP
# # Default sound is ENTITY_PLAYER_LEVELUP
shout-sound : ENTITY_PLAYER_LEVELUP
#
# # 冷卻時間(單位:秒)/Cooldown time (in seconds)
# # 玩家使用 /shout 指令後需要等待的時間
# # The time players need to wait after using the /shout command
# # 預設: 30 秒/Default: 30 seconds
cooldown-time : 30
# # 企鵝Penguin的公告插件V2
# # The Shout Plugin Version 2 by.Penguin
# # ===================================================
# # 訊息顏色/Message Color | 預設:白色(&f)/Default: White(&f)
# # 可以透過顏色代碼來讓訊息有顏色!/You can use color codes to make the messages colorful!
shout-prefix : '&6 [Shout ]'
message-color : '&f'
countdown-message : '&eShout will be broadcasted in &6 {count }&e seconds ...'
#
# # 是否顯示自動公告的倒數3秒訊息/Show countdown message for auto shouts?
# # 預設: false/Default: false
# # 如果設為 true,自動公告將會顯示倒數3秒的訊息/If set to true, the automatic announcement will display a countdown message of 3 seconds.
show-countdown : false
#
# # 預設的 Shout 音效/Default Shout Sound
# # 玩家可以透過 /shout setsounds 指令選擇音效
# # Players can use the /shout setsounds command to select a sound
# # 預設音效為 ENTITY_PLAYER_LEVELUP
# # Default sound is ENTITY_PLAYER_LEVELUP
shout-sound : ENTITY_PLAYER_LEVELUP
#
# # 冷卻時間(單位:秒)/Cooldown time (in seconds)
# # 玩家使用 /shout 指令後需要等待的時間
# # The time players need to wait after using the /shout command
# # 預設: 30 秒/Default: 30 seconds
cooldown-time : 30
Spoiler: Whisper-Config.yml
Code (YAML):
whisper:
enabled : true
format:
from : '&7 [From {sender } ] {message }'
to : '&7 [To {receiver } ] {message }'
sound : BLOCK.NOTE_BLOCK.PLING
enabled : true
format:
from : '&7 [From {sender } ] {message }'
to : '&7 [To {receiver } ] {message }'
sound : BLOCK.NOTE_BLOCK.PLING
Spoiler: Permissions
Code (Text):
shout.use:
description: Allows the player to use the basic shout command.
shout.set:
description: Allows the player to schedule a shout.
shout.cancel:
description: Allows the player to cancel a scheduled shout.
shout.autotime:
description: Allows the player to set and manage auto shouts.
shout.setsounds:
description: Allows the player to set the shout sound.
shout.admin:
description: Grants access to all shout commands.
whisper.use:
description: Allows the player to use whisper and reply commands.
shout.bypasscooldown:
description: Bypass shout cooldown.
description: Allows the player to use the basic shout command.
shout.set:
description: Allows the player to schedule a shout.
shout.cancel:
description: Allows the player to cancel a scheduled shout.
shout.autotime:
description: Allows the player to set and manage auto shouts.
shout.setsounds:
description: Allows the player to set the shout sound.
shout.admin:
description: Grants access to all shout commands.
whisper.use:
description: Allows the player to use whisper and reply commands.
shout.bypasscooldown:
description: Bypass shout cooldown.
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Quick facts
- Edition: Minecraft Java
- File type: .jar
- Minecraft version listed: 1.21
- How to install: Install the matching mod loader (Forge, Fabric or NeoForge) for your Minecraft version. → Download the .jar. → Put it in the .minecraft/mods folder and launch that loader profile.
- Where to get it: Opens on Spigot — not every file is mirrored on our own servers.
Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.
✨ShoutPlugin [1.21.4] |✅Broadcast System✅ is a free Minecraft Java mod. Compatible with Minecraft 1.21. Downloaded 462 times (via Spigot). Download it and open it directly in the game.