Word Scrambler
Is a fun chat game where every 15 minutes (customisable) a random word appear in chat and reward the fastest user to put it back !
Is a fun chat game where every 15 minutes (customisable) a random word appear in chat and reward the fastest user to put it back !
Happy player !
Everything is customisable !
Everything is customisable !
You can use any item in the plugin as rewards with in-game command :
and having in hands the item as reward.
Code (Text):
/wordscramblerReward
What's customisable in config.yml ?
- The reward item
- The word that will be scrambled
- All the text
- The plugin prefix
- The time allowed to user to answer
- The time between each event
- Is it case sensitive?
- Sound effect
- Win title screen
Spoiler: config.yml
Code (YAML):
[/B
]
# ###################################################################################
# __ __ _ _____ _ _ #
# \ \ / / | | / ____| | | | | #
# \ \ /\ / /__ _ __ __| | | (___ ___ _ __ __ _ _ __ ___ | |__ | | ___ _ __ #
# \ \/ \/ / _ \| '__/ _` | \___ \ / __| '__/ _` | '_ ` _ \| '_ \| |/ _ \ '__| #
# \ /\ / (_) | | | (_| | ____) | (__| | | (_| | | | | | | |_) | | __/ | #
# \/ \/ \___/|_| \__,_| |_____/ \___|_| \__,_|_| |_| |_|_.__/|_|\___|_| #
# ###################################################################################
# Word Scrambler Plugin Configuration #
# Developed by Pixeleur Game Studio - 2025 #
# Support: https://discord.com/invite/2pssCZR #
# Tutorial: https://www.spigotmc.org/resources/word-scrambler-reward-game.118505/ #
# ###################################################################################
# ========================
# Basic Settings
# ========================
# Plugin prefix used in chat messages
event_prefix : '&c [WORD SCRAMBLERS ] '
# ========================
# Event Configuration
# ========================
# Time settings (in minutes)
time_for_answering : 2 # Duration players have to solve the puzzle
time_between_each_event : 15 # Cooldown between consecutive games
# Case sensitivity settings
case_sensitive : false # true = Exact case match required
# false = "TEST", "Test", and "test" all accepted
# (For word "Test": 'test' & 'tESt' would work when false)
# ========================
# Game Messages
# ========================
event_start_message : '&eFirst to find the word ''&a %scrambledword%''&e, will win the game.'
event_end_win : '&a %player%&e found the word &2%unscrambledword%&e in &a%time%&e!'
event_end_nobody : '&eNobody found the word. It was : ''&a %unscrambledword%&e'''
# ========================
# Sound Effects
# ========================
# Valid sound names: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Sound.html
# Set to 'NONE' to disable any sound
win_sound : ENTITY_FIREWORK_ROCKET_LARGE_BLAST # Played to winner
event_start_sound : ENTITY_FIREWORK_ROCKET_LAUNCH # Game start sound
event_end_win_sound : ENTITY_FIREWORK_ROCKET_TWINKLE # Win celebration
event_end_nobody_sound : BLOCK_NOTE_BLOCK_BASS # Played when nobody wins
# ========================
# Victory Title Settings
# ========================
# Title display timings are in ticks (20 ticks = 1 second)
win_title_main : '&6&lVICTORY!' # Main title text
win_title_sub : '&b %unscrambledword% &ffound in &e%time%' # Subtitle text
win_title_fade_in : 15 # Fade-in duration (0.75 seconds)
win_title_stay : 60 # Display duration (3 seconds)
win_title_fade_out : 20 # Fade-out duration (1 second)
# ========================
# Reward Configuration
# ========================
event_rewards_count : 5 # Number of items to give as reward
event_reward_material : IRON_INGOT # Material type for reward
# NBT data for custom items (Base64 encoded serialized ItemStack)
# WARNING: Modify only if you understand Bukkit NBT encoding!
# NOTE: this is auto generated when using the /wordrewardregister
event_reward_nbt : "rO0ABXNyABpvcmcuYnVra2l0LnV0aWwuaW8uV3JhcHBlcvJQR+zxEm8FAgABTAADbWFwdAAPTGph\r\
\ndmEvdXRpbC9NYXA7eHBzcgA1Y29tLmdvb2dsZS5jb21tb24uY29sbGVjdC5JbW11dGFibGVNYXAk\r\
\nU2VyaWFsaXplZEZvcm0AAAAAAAAAAAIAAkwABGtleXN0ABJMamF2YS9sYW5nL09iamVjdDtMAAZ2\r\
\nYWx1ZXNxAH4ABHhwdXIAE1tMamF2YS5sYW5nLk9iamVjdDuQzlifEHMpbAIAAHhwAAAAA3QAAj09\r\
\ndAABdnQABHR5cGV1cQB+AAYAAAADdAAeb3JnLmJ1a2tpdC5pbnZlbnRvcnkuSXRlbVN0YWNrc3IA\r\
\nEWphdmEubGFuZy5JbnRlZ2VyEuKgpPeBhzgCAAFJAAV2YWx1ZXhyABBqYXZhLmxhbmcuTnVtYmVy\r\
\nhqyVHQuU4IsCAAB4cAAADv90AApJUk9OX0lOR09U\r\n"
# ========================
# Word Bank
# ========================
# Add/remove words below (avoid special characters)
# TIP: Keep words between 4-15 characters for best gameplay
Words :
- Pixeleur
- Minecraft
- Java
- Spigot
# Fun example of long word (45 letters)
- Pneumonoultramicroscopicsilicovolcanoconiosis
[B ]
# ###################################################################################
# __ __ _ _____ _ _ #
# \ \ / / | | / ____| | | | | #
# \ \ /\ / /__ _ __ __| | | (___ ___ _ __ __ _ _ __ ___ | |__ | | ___ _ __ #
# \ \/ \/ / _ \| '__/ _` | \___ \ / __| '__/ _` | '_ ` _ \| '_ \| |/ _ \ '__| #
# \ /\ / (_) | | | (_| | ____) | (__| | | (_| | | | | | | |_) | | __/ | #
# \/ \/ \___/|_| \__,_| |_____/ \___|_| \__,_|_| |_| |_|_.__/|_|\___|_| #
# ###################################################################################
# Word Scrambler Plugin Configuration #
# Developed by Pixeleur Game Studio - 2025 #
# Support: https://discord.com/invite/2pssCZR #
# Tutorial: https://www.spigotmc.org/resources/word-scrambler-reward-game.118505/ #
# ###################################################################################
# ========================
# Basic Settings
# ========================
# Plugin prefix used in chat messages
event_prefix : '&c [WORD SCRAMBLERS ] '
# ========================
# Event Configuration
# ========================
# Time settings (in minutes)
time_for_answering : 2 # Duration players have to solve the puzzle
time_between_each_event : 15 # Cooldown between consecutive games
# Case sensitivity settings
case_sensitive : false # true = Exact case match required
# false = "TEST", "Test", and "test" all accepted
# (For word "Test": 'test' & 'tESt' would work when false)
# ========================
# Game Messages
# ========================
event_start_message : '&eFirst to find the word ''&a %scrambledword%''&e, will win the game.'
event_end_win : '&a %player%&e found the word &2%unscrambledword%&e in &a%time%&e!'
event_end_nobody : '&eNobody found the word. It was : ''&a %unscrambledword%&e'''
# ========================
# Sound Effects
# ========================
# Valid sound names: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Sound.html
# Set to 'NONE' to disable any sound
win_sound : ENTITY_FIREWORK_ROCKET_LARGE_BLAST # Played to winner
event_start_sound : ENTITY_FIREWORK_ROCKET_LAUNCH # Game start sound
event_end_win_sound : ENTITY_FIREWORK_ROCKET_TWINKLE # Win celebration
event_end_nobody_sound : BLOCK_NOTE_BLOCK_BASS # Played when nobody wins
# ========================
# Victory Title Settings
# ========================
# Title display timings are in ticks (20 ticks = 1 second)
win_title_main : '&6&lVICTORY!' # Main title text
win_title_sub : '&b %unscrambledword% &ffound in &e%time%' # Subtitle text
win_title_fade_in : 15 # Fade-in duration (0.75 seconds)
win_title_stay : 60 # Display duration (3 seconds)
win_title_fade_out : 20 # Fade-out duration (1 second)
# ========================
# Reward Configuration
# ========================
event_rewards_count : 5 # Number of items to give as reward
event_reward_material : IRON_INGOT # Material type for reward
# NBT data for custom items (Base64 encoded serialized ItemStack)
# WARNING: Modify only if you understand Bukkit NBT encoding!
# NOTE: this is auto generated when using the /wordrewardregister
event_reward_nbt : "rO0ABXNyABpvcmcuYnVra2l0LnV0aWwuaW8uV3JhcHBlcvJQR+zxEm8FAgABTAADbWFwdAAPTGph\r\
\ndmEvdXRpbC9NYXA7eHBzcgA1Y29tLmdvb2dsZS5jb21tb24uY29sbGVjdC5JbW11dGFibGVNYXAk\r\
\nU2VyaWFsaXplZEZvcm0AAAAAAAAAAAIAAkwABGtleXN0ABJMamF2YS9sYW5nL09iamVjdDtMAAZ2\r\
\nYWx1ZXNxAH4ABHhwdXIAE1tMamF2YS5sYW5nLk9iamVjdDuQzlifEHMpbAIAAHhwAAAAA3QAAj09\r\
\ndAABdnQABHR5cGV1cQB+AAYAAAADdAAeb3JnLmJ1a2tpdC5pbnZlbnRvcnkuSXRlbVN0YWNrc3IA\r\
\nEWphdmEubGFuZy5JbnRlZ2VyEuKgpPeBhzgCAAFJAAV2YWx1ZXhyABBqYXZhLmxhbmcuTnVtYmVy\r\
\nhqyVHQuU4IsCAAB4cAAADv90AApJUk9OX0lOR09U\r\n"
# ========================
# Word Bank
# ========================
# Add/remove words below (avoid special characters)
# TIP: Keep words between 4-15 characters for best gameplay
Words :
- Pixeleur
- Minecraft
- Java
- Spigot
# Fun example of long word (45 letters)
- Pneumonoultramicroscopicsilicovolcanoconiosis
[B ]
Quick facts
- Edition: Minecraft Java
- File type: .jar
- Minecraft versions listed: 1.9, 1.12, 1.15
- 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.
Word Scrambler - Reward game is a free Minecraft Java mod. Compatible with Minecraft 1.9, 1.12, 1.15, 1.20.6 and newer. Downloaded 420 times (via Spigot). Download it and open it directly in the game.