chatgames.yml

# ====================================================================================================
#
# PrimeChat Games Configuration File
#
# Configure chat games questions, answers, and rewards here. 
# Developed with ❤ by AntiMalware and Zivush.
# You can use PlaceholderAPI placeholders and color codes (& and hex).
#
# ====================================================================================================

# Chat games settings
settings:
  # Enable/disable chat games feature
  enabled: true
  # Interval between automatic questions (in minutes)
  interval: 5
  # Timeout for each question (in seconds) - if no one answers within this time, no reward is given
  timeout: 60
  # Enable/disable sending questions automatically
  auto-send: true

# Messages used by the chat games system
messages:
  # Message shown when a new question is asked
  question-announcement:
    - ""
    - "&#FF6347&l⚡ CHAT GAME ⚡"
    - "&#32CD32Answer the question below to win a reward!"
    - ""
  
  question-format:
    - "&#FF6347&l❓ QUESTION: &#E0E0E0%question%"
    - ""
    - "&#FFC447&l💡 HINT: &#888888Type your answer in chat to participate!"
  
  # Message shown when someone wins
  winner-announcement:
    - ""
    - "&#32CD32&l🎉 WINNER! 🎉"
    - "&#E0E0E0%player% &#32CD32answered correctly in &#FFD700%time%&#32CD32!"
    - ""
  
  correct-answer: "&#32CD32✔ Congratulations! You answered in &#FFD700%time%&#32CD32 and won: &#E0E0E0%reward%"
  
  # Message shown when time runs out
  timeout-message: "&#4D4D4D&l| &#FF6347&lTIME UP &#4D4D4D&l» &r&#FFC447No one answered the question in time! The answer was: &#E0E0E0%answer%"
  
  # Command usage messages
  no-permission: "&#FF4747✖ You don't have permission to use this command."
  question-sent: "&#32CD32✔ Chat game question sent successfully!"
  games-disabled: "&#FFC447⚠ Chat games are currently disabled."
  already-active: "&#FFC447⚠ A chat game is already active. Please wait for it to finish."

# Chat games questions and answers
# Each question can have multiple possible answers (case-insensitive)
# Rewards are console commands executed with %player% placeholder
games:
  trivia-1:
    question: "What is the capital of France?"
    answers:
      - "Paris"
      - "paris"
    reward-command: "give %player% diamond 1"
    reward-display: "1x Diamond"
    
  trivia-2:
    question: "What is 2 + 2?"
    answers:
      - "4"
      - "four"
      - "Four"
    reward-command: "give %player% gold_ingot 5"
    reward-display: "5x Gold Ingot"
    
  trivia-3:
    question: "What is the largest ocean on Earth?"
    answers:
      - "Pacific"
      - "pacific"
      - "Pacific Ocean"
      - "pacific ocean"
    reward-command: "give %player% emerald 3"
    reward-display: "3x Emerald"
    
  trivia-4:
    question: "In Minecraft, what do you need to make a cake?"
    answers:
      - "milk wheat sugar egg"
      - "wheat milk sugar egg"
      - "3 milk 3 wheat 2 sugar 1 egg"
      - "milk, wheat, sugar, egg"
    reward-command: "give %player% cake 1"
    reward-display: "1x Cake"
    
  trivia-5:
    question: "What year was Minecraft released?"
    answers:
      - "2011"
      - "2009"
    reward-command: "eco give %player% 1000"
    reward-display: "$1000"
    
  math-1:
    question: "What is 15 × 4?"
    answers:
      - "60"
      - "sixty"
    reward-command: "give %player% iron_ingot 10"
    reward-display: "10x Iron Ingot"
    
  math-2:
    question: "What is the square root of 64?"
    answers:
      - "8"
      - "eight"
    reward-command: "give %player% redstone 32"
    reward-display: "32x Redstone"
    
  minecraft-1:
    question: "What ore is used to make netherite?"
    answers:
      - "ancient debris"
      - "Ancient Debris"
      - "netherite scrap"
      - "Netherite Scrap"
    reward-command: "give %player% netherite_scrap 1"
    reward-display: "1x Netherite Scrap"
    
  minecraft-2:
    question: "What dimension do you find End Cities in?"
    answers:
      - "The End"
      - "the end"
      - "End"
      - "end"
    reward-command: "give %player% ender_pearl 5"
    reward-display: "5x Ender Pearl"
    
  minecraft-3:
    question: "What potion effect makes you invisible?"
    answers:
      - "invisibility"
      - "Invisibility"
      - "invis"
    reward-command: "give %player% potion{Potion:minecraft:invisibility} 1"
    reward-display: "1x Invisibility Potion"
    
  geography-1:
    question: "What is the smallest country in the world?"
    answers:
      - "Vatican City"
      - "vatican city"
      - "Vatican"
      - "vatican"
    reward-command: "give %player% book 5"
    reward-display: "5x Book"
    
  geography-2:
    question: "Which country has the most time zones?"
    answers:
      - "France"
      - "france"
    reward-command: "give %player% clock 1"
    reward-display: "1x Clock"
    
  science-1:
    question: "What is the chemical symbol for gold?"
    answers:
      - "Au"
      - "au"
      - "AU"
    reward-command: "give %player% gold_block 1"
    reward-display: "1x Gold Block"
    
  science-2:
    question: "How many bones are in the human body?"
    answers:
      - "206"
      - "two hundred six"
    reward-command: "give %player% bone 10"
    reward-display: "10x Bone"
    
  random-1:
    question: "Unscramble: TREAC"
    answers:
      - "trace"
      - "Trace"
      - "crate"
      - "Crate"
      - "react"
      - "React"
    reward-command: "give %player% chest 1"
    reward-display: "1x Chest"

Last updated