1 431
收录服务器
2 102
注册
32 330
玩家
ChatQuiz
一个简单但有趣的基于聊天的测验插件,带有可点击的消息
作 者 crysis992
发布时间 2015年12月17日
支持核心 Spigot
原生版本
支持版本 1.10,1.11,1.12
点此下载

🎉 ChatQuiz 插件介绍

ChatQuiz 是一款为 Minecraft 服务器增加趣味性的插件,通过简单的指令即可发起基于聊天的问答活动。它会广播随机问题,并奖励正确回答问题的玩家。该插件使用带有点击功能的聊天消息,玩家无需输入任何指令即可参与。本插件需要 CT-Core 的支持,同时请确保已安装 Vault 以及支持的经济插件。

⚙️ 主要特性

  • 高度可定制
  • 使用可点击的消息
  • 可以添加任意数量的问题
  • 可以添加任意数量的问答!
  • 高效的代码和轻量级插件
  • 适用于各种服务器,是举办活动的完美选择
  • 所有消息均可翻译

🔑 指令和权限

完整的指令和权限列表如下:

指令和权限列表

📝 默认配置

默认配置文件如下:

默认配置

📦 依赖

本插件需要 Vault 和一个兼容的经济插件,并且需要 CT-Core 才能运行。

💰 捐赠

如果您喜欢我的插件并希望帮助我,请考虑捐赠。您的捐赠将用于更多的错误修复,非常感谢!

📜 配置示例


# ChatQuiz configuration
# ConnorTumbleson

settings:
  prefix: '&7[&bChatQuiz&7] '
  correct-answer: '&aYou answered correctly!'
  wrong-answer: '&cYou answered incorrectly!'
  question-broadcast: '&b{question}'
  reward-message: '&aYou have been rewarded &e{reward} &ax!'
  quiz-start-broadcast: '&aQuiz &b{quiz} &astarted!'
  next-question-delay: 10 # Seconds
  correct-answer-delay: 3 # Seconds

  # Should the player receive a message when they answer the question correctly?
  send-correct-message: true

  # Should the player receive a message when they answer the question incorrectly?
  send-wrong-message: false

  # Should the quiz automatically start when the server starts?
  auto-start: false

  # The quiz to automatically start.
  auto-start-quiz: 'default'

  # Set to true if you want the quiz to repeat itself when the questions run out.
  repeat-quiz: false

📜 Quizzes 示例


# ChatQuiz quizzes
# ConnorTumbleson

# Quiz name: default
# To start this quiz: /quiz start default
default:
  # Displayed name
  display-name: '&aDefault quiz'

  # List of questions
  questions:
    1:
      question: '&aWhat colour is the sky?'
      answer: 'blue'
      reward: 100
    2:
      question: '&aWhat is 1 + 1?'
      answer: '2'
      reward: 100