SphinxRiddle

Quick rating

SphinxRiddle

No reviews yet

Quiz Competition System for Minecraft Servers

Minigame
Mod Loaders
NeoForge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Unsupported
Server Required

About

Project Details

Type
Mod
License
GNU Lesser General Public License v2.1 or later
Latest Version
sphinxriddle-2.0-NeoForge-1.21.x.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Sphinx Riddle - Minecraft Quiz Competition Mod

logo

🎮 Quiz Competition System for Minecraft Servers

release issues license


Features

Auto Quiz System

  • Automatic question intervals with configurable timing
  • Question timeout handling
  • JSON-based question and reward configuration

Smart Answer Detection

  • Contains-based answer matching (e.g., "龟派气功" matches "气功")
  • Case-insensitive matching
  • First-correct-player wins system

Reward System

  • Random reward selection from configurable pool
  • Variable reward amounts
  • Item auto-completion with MC's item selector

Scoreboard & Ranking

  • Real-time scoreboard display on client side (configurable)
  • Top 15 players ranking with colored positions
  • Persistent score storage

Comprehensive Commands

  • Player commands: /sr question (configurable permission)
  • Admin commands: Question/reward management, scoreboard control
  • Permission-based command access

Easy Configuration

  • JSON configuration files
  • Hot-reload support
  • Customizable messages and intervals

Internationalization (i18n)

  • Full English and Chinese language support
  • Automatic language detection based on client settings
  • Easy to add more languages

Quick Start

Installation

  1. Download the latest sphinxriddle-x.x-NeoForge-1.21.x.jar from Releases
  2. Place it in your server's mods folder
  3. Restart the server

Basic Usage

For Players:

  • Answer questions directly in chat when they appear
  • Use /sr question to manually start a new question (if allowed by config)
  • Check your ranking on the right-side scoreboard (if enabled)

For Admins:

# Reload configuration
/sr reload

# Add questions
/sr add question "What tool mines diamond?" "Iron Pickaxe"

# Add rewards with auto-completion
/sr add reward minecraft:diamond 5

# Manage rankings
/sr list ranking
/sr reset ranking

Configuration

Main Configuration (config/sphinxriddle-client.toml)

The mod uses NeoForge's configuration system with the following options:

Setting Default Description
questionInterval 300 Time between auto questions (seconds)
questionTimeout 60 Time before question expires (seconds)
autoQuestionEnabled true Enable automatic questions
allowManualQuestion true Allow players to use /sr question
showScoreboard true Display scoreboard on client side
questionPrefix "&6[问答]&r " Prefix for question messages
rewardMessage "&a恭喜 %player% 正确回答问题!获得奖励: %reward%" Reward announcement message
newQuestionMessage "&e新问题: %question% &e(输入答案到聊天框)" New question announcement
configReloadedMessage "&aSphinxRiddle 配置重载完成" Config reload message

The prompt information in the configuration file defaults to Chinese. If you need other languages, please modify the configuration file accordingly

Data Files (config/sphinxriddle/)

  • questions.json - Question and answer pairs
  • rewards.json - Reward items and maximum amounts
  • scoreboard.json - Player scores and rankings

Example Configuration

questions.json:

[
  {
    "question": "What mob explodes in Minecraft?",
    "answer": "Creeper"
  }
]

rewards.json:

[
  {
    "itemId": "minecraft:diamond",
    "maxAmount": 5
  }
]

Commands Reference

Player Commands

Command Description Permission
/sr question Start a new question All players (if allowManualQuestion=true) or OP only

Admin Commands

Command Description Permission
/sr reload Reload configuration OP (2)
/sr add question <question> <answer> Add new question OP (2)
/sr add reward <item> <maxAmount> Add reward item OP (2)
/sr list question List all questions OP (2)
/sr list reward List all rewards OP (2)
/sr list ranking Show leaderboard OP (2)
/sr reset ranking Reset scores OP (2)
/sr remove question <question> Remove question OP (2)
/sr remove reward <item> Remove reward OP (2)

Language Support

The mod supports multiple languages automatically based on the client's language setting:

  • English (en_us) - Default language
  • Chinese (zh_cn) - 简体中文
  • Spanish (es_es) - Español
  • French (fr_fr) - Français
  • German (de_de) - Deutsch
  • Japanese (ja_jp) - 日本語
  • Russian (ru_ru) - Русский
  • Portuguese (pt_br) - Português Brasileiro
  • Korean (ko_kr) - 한국어
  • Italian (it_it) - Italiano

The mod will automatically display text in the player's client language. If a language is not fully translated, it will fall back to English.

Adding New Languages

To add support for a new language:

  1. Create a new JSON file in assets/sphinxriddle/lang/ (e.g., fr_fr.json)
  2. Add translations using the same keys as in en_us.json
  3. The mod will automatically detect and use the appropriate language

Example language file structure:

{
  "sphinxriddle.command.help.title": "=== Commandes SphinxRiddle ===",
  "sphinxriddle.command.help.question": "/sr question - Démarrer une nouvelle question"
  // ... more translations
}

Development

Building from Source

git clone https://github.com/SkyDreamLG/SphinxRiddle.git
cd SphinxRiddle
./gradlew build

Requirements

  • Minecraft 1.20.1+
  • NeoForge
  • Java 17+

Internationalization

The mod uses Minecraft's Component.translatable() system for all user-facing text. When adding new features:

  • Use translation keys instead of hardcoded strings
  • Provide translations in both en_us.json and zh_cn.json
  • Use string interpolation with %s placeholders when needed

Example:

// Instead of:
Component.literal("Configuration reloaded")

// Use:
Component.translatable("sphinxriddle.command.reload.success")

Support

License

This project is licensed under the GNU LGPL 2.1 License - see the LICENSE file for details.


Note:

  1. The scoreboard display and manual question commands can be disabled in the configuration file for server customization.

  2. The prompt information in the configuration file defaults to Chinese. If you need other languages, please modify the configuration file accordingly

Sphinx Riddle - Minecraft Quiz Competition Mod

logo

🎮 Quiz Competition System for Minecraft Servers

release issues license


Features

  • Auto Quiz System

    • Automatic question intervals with configurable timing
    • Question timeout handling
    • JSON-based question and reward configuration
    • Smart Answer Detection

      • Contains-based answer matching (e.g., "龟派气功" matches "气功")
      • Case-insensitive matching
      • First-correct-player wins system
    • Reward System

      • Random reward selection from configurable pool
      • Variable reward amounts
      • Item auto-completion with MC's item selector
    • Scoreboard & Ranking

      • Real-time scoreboard display on client side (configurable)
      • Top 15 players ranking with colored positions
      • Persistent score storage
    • Comprehensive Commands

      • Player commands: /sr question (configurable permission)
      • Admin commands: Question/reward management, scoreboard control
      • Permission-based command access
    • Easy Configuration

      • JSON configuration files
      • Hot-reload support
      • Customizable messages and intervals
    • Internationalization (i18n)

      • Full English and Chinese language support
      • Automatic language detection based on client settings
      • Easy to add more languages

Quick Start

Installation

  1. Download the latest sphinxriddle-x.x-NeoForge-1.21.x.jar from Releases
  2. Place it in your server's mods folder
  3. Restart the server

Basic Usage

For Players:

  • Answer questions directly in chat when they appear
  • Use /sr question to manually start a new question (if allowed by config)
  • Check your ranking on the right-side scoreboard (if enabled)

For Admins:

# Reload configuration
/sr reload

# Add questions
/sr add question "What tool mines diamond?" "Iron Pickaxe"

# Add rewards with auto-completion
/sr add reward minecraft:diamond 5

# Manage rankings
/sr list ranking
/sr reset ranking

Configuration

Main Configuration (config/sphinxriddle-client.toml)

The mod uses NeoForge's configuration system with the following options:

Setting Default Description questionInterval 300 Time between auto questions (seconds) questionTimeout 60 Time before question expires (seconds) autoQuestionEnabled true Enable automatic questions allowManualQuestion true Allow players to use /sr question showScoreboard true Display scoreboard on client side questionPrefix "&6[问答]&r " Prefix for question messages rewardMessage "&a恭喜 %player% 正确回答问题!获得奖励: %reward%" Reward announcement message newQuestionMessage "&e新问题: %question% &e(输入答案到聊天框)" New question announcement configReloadedMessage "&aSphinxRiddle 配置重载完成" Config reload message

The prompt information in the configuration file defaults to Chinese. If you need other languages, please modify the configuration file accordingly

Data Files (config/sphinxriddle/)

· questions.json - Question and answer pairs · rewards.json - Reward items and maximum amounts · scoreboard.json - Player scores and rankings

Example Configuration

questions.json:

[
  {
    "question": "What mob explodes in Minecraft?",
    "answer": "Creeper"
  }
]

rewards.json:

[
  {
    "itemId": "minecraft:diamond",
    "maxAmount": 5
  }
]

Commands Reference

Player Commands

Command Description Permission /sr question Start a new question All players (if allowManualQuestion=true) or OP only

Admin Commands

Command Description Permission /sr reload Reload configuration OP (2) /sr add question Add new question OP (2) /sr add reward <maxAmount> Add reward item OP (2) /sr list question List all questions OP (2) /sr list reward List all rewards OP (2) /sr list ranking Show leaderboard OP (2) /sr reset ranking Reset scores OP (2) /sr remove question Remove question OP (2) /sr remove reward Remove reward OP (2)

Language Support

The mod supports multiple languages automatically based on the client's language setting:

· English (en_us) - Default language · Chinese (zh_cn) - 简体中文 · Spanish (es_es) - Español · French (fr_fr) - Français · German (de_de) - Deutsch · Japanese (ja_jp) - 日本語 · Russian (ru_ru) - Русский · Portuguese (pt_br) - Português Brasileiro · Korean (ko_kr) - 한국어 · Italian (it_it) - Italiano

The mod will automatically display text in the player's client language. If a language is not fully translated, it will fall back to English.

Adding New Languages

To add support for a new language:

  1. Create a new JSON file in assets/sphinxriddle/lang/ (e.g., fr_fr.json)
  2. Add translations using the same keys as in en_us.json
  3. The mod will automatically detect and use the appropriate language

Example language file structure:

{
  "sphinxriddle.command.help.title": "=== Commandes SphinxRiddle ===",
  "sphinxriddle.command.help.question": "/sr question - Démarrer une nouvelle question"
  // ... more translations
}

Development

Building from Source

git clone https://github.com/SkyDreamLG/SphinxRiddle.git
cd SphinxRiddle
./gradlew build

Requirements

· Minecraft 1.20.1+ · NeoForge · Java 17+

Internationalization

The mod uses Minecraft's Component.translatable() system for all user-facing text. When adding new features:

· Use translation keys instead of hardcoded strings · Provide translations in both en_us.json and zh_cn.json · Use string interpolation with %s placeholders when needed

Example:

// Instead of:
Component.literal("Configuration reloaded")

// Use:
Component.translatable("sphinxriddle.command.reload.success")

Support

· GitHub Discussions - For questions and support · Issue Tracker - For bug reports and feature requests

License

This project is licensed under the GNU LGPL 2.1 License - see the LICENSE file for details.


Note:

  1. The scoreboard display and manual question commands can be disabled in the configuration file for server customization.
  2. The prompt information in the configuration file defaults to Chinese. If you need other languages, please modify the configuration file accordingly

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works