shared.lua

Documentation for shared.lua Configuration

Categories configuration

  • The Shared.Words table contains categories as keys, and each category has a list of words associated with it. Below is an example of the structure:

Shared = {}
Shared.Words = {
    ["CategoryName"] = {
        "Word1", "Word2", "Word3", -- Add more words as needed
    },
    ["AnotherCategory"] = {
        "WordA", "WordB", "WordC",
    }
}

Example configuration

The default configuration includes the Animals category with the following words:

Shared.Words = {
    ["Animals"] = {
        "Dog", "Cat", "Elephant", "Tiger",
    }
}

Last updated