Unscramble

Game Type: Unscramble

What is an unscramble game?

Unscramble games are Chat Games which will test how quickly your players are able to unscramble the given scrambled, and type it into the chat. A scrambled word will be broadcast to all players with the correct permissions who do not have the games muted. Once this word has been broadcast the first player to unscramble the word and send it in the chat will win the game.

As a player attempts to guess the word they will receive a message to inform them on their progress. An example of this would be if the word was "Apple" and the player typed in the word "Aple" then they would be told that they have gotten 4/5 letters correct.

How can I configure an unscramble game?

Adding your own words and settings to the unscramble game is very simple, and can be achieved through the config.yml file. You do not have to worry about scrambling the words yourself as the plugin will do this for you. In order to configure a game you can use the below template as an example:

unscramble:
  words: # The words for the game can be entered here, and the plugin will scramble them for you
    - 'dove'
    - 'pigeon'
    - 'gull'
    - 'turkey'
    - 'eagle'
    - 'blue-jay'
    - 'sea gull'
  rewards: # This section handles the rewards that a player will receive upon winning the game
    broadcast: # This defines the message that will be broadcast to all players when a player wins | Supports %player%, %question% and %answer% placeholders
      - '&7%player% &ehas won &6$50&e for unscrambling the word &6&l%answer% &efirst!'
    commands: # This is a list of commands that can be run when the game is won. It supports the %player% placeholder to fetch the winning player
      - 'eco give %player% 50'

Unscramble Messages

You can also change the messages that are displayed in game when an unscramble game is started, won or lost. You are able to change these inside the messages.yml file. The below values show you how to change the default messages:

# Unscramble Game Format
scramble-start: '&eUnscramble the word %question% and type it in the chat.'
scramble-lose: '&7Nobody won! The correct word was &b&l%answer%.'

# Unscramble Hologram Format
unscramble-scoreboard:
  - '&8[&a&lUnscramble Hi-Scores&8]'
  - '&6&l1st: &7%unscramble_player_1% : %unscramble_score_1%'
  - '&9&l2nd: &7%unscramble_player_2% : %unscramble_score_2%'
  - '&c&l3rd: &7%unscramble_player_3% : %unscramble_score_3%'
  - '&b&l4th: &7%unscramble_player_4% : %unscramble_score_4%'
  - '&b&l5th: &7%unscramble_player_5% : %unscramble_score_5%'

Last updated