Skip to content

6: Minigame settings

tarrynt whitty edited this page Jan 25, 2024 · 1 revision

#Minigame settings

trivia

for the trivia minigame there is a Triva_Questions.json file included. this has all the current trivia questions stored inside

currently it only uses the "example" categories but in the future will support more

to add new questions make sure to follow the format given

      {
        "question": "Question here",
        "correctAnswerChoices": [
          "Answer A here",
          "Answer B here",
          "Answer C here",
          "Answer D here"
        ],
        "correctAnswerIndex": "0"
      },

the question field is your question

the correctAnswerChoices are your multi choice answers. there must be 4

the correctAnswerIndex is the index for the correct answer. A = 0 B = 1 C = 2 D = 3

wordle

There is a json file with all the words stored inside Wordle_Wordlist.json these MUST all be 5 letter words as that is how wordle works you can just add a new word by adding a new line

"hello",

would add hello to the list. It includes a list of 12486 words. not all of these are real words as this was a ai gen'ed file for example. edit to your liking

Clone this wiki locally