Welcome to CoreMart!

By registering with us, you'll be able to discuss, share, download resources and private message with other members of our community.

Sign-Up Now!
Resource icon

Wordle | BrayanBot Addon 1.2.3

No permission to download

Changelog:

  • Solved bug not showing {word} variable in timeout message

Changelog:

  • Solved error not displaying the correct last 5 games in stats command

Changelog:

  • Solved error showing an invalid game started date
  • Removed {percentage} variable from stats message

Changelog:

  • Added option to modify the time limit of response | TimeLimit
  • Changed the key Language to DefaultLanguage
  • Ability to set the game language while starting a game
  • Added DB support
  • Added WordleStats command

Config changes:

  • YAML:
    Wordle:
      DefaultLanguage: en
      TimeLimit: 75000
    Commands:
      Wordle:
        Usage: wordle
        Description: Start a wordle game
        Aliases: []
        Permission:
          - "@everyone"
        SlashCommand:
          Enabled: true
          Data:
            Name: wordle
            Description: Start a wordle game
            Options:
              - Type: String
                Name: lang
                Description: The language of the game
                Required: false
                Choices:
                  - Name: English
                    Value: en
                  - Name: Spanish
                    Value: es
                  - Name: Test
                    Value: asdes
      WordleStats:
        Usage: Use the slash command
        Description: Get a wordle member's stats
        Aliases: []
        Permission:
          - "@everyone"
        SlashCommand:
          Enabled: true
          Data:
            Name: wordleStats
            Description: Get a wordle member's stats
            Options:
              - Type: User
                Name: user
                Description: The user to get stats from
                Required: false
  • YAML:
    Commands:
      Wordle:
        Error:
          Embeds:
            - Author: An unexpected error has occured
              AuthorIcon: https://cdn-icons-png.flaticon.com/512/4457/4457164.png
              Color: RED
              Description: "> **{error}**"
              Timestamp: true
      WordleStats:
        GamesFormat: "{type-emoji} | {word} - {startedAt-string}"
        # {index}, {type}, {type-emoji}, {word}, {startedAt}, {startedAt-string},
        # {endedAt}, {endedAt-string}
        Message:
          Embeds:
            - AuthorIcon: https://cdn-icons-png.flaticon.com/512/921/921540.png
              Author: Wordle Stats | {user-tag}
              Color: BLUE
              Description: "**{user-tag}** has played **{games}** games"
              Fields:
                - Name: 🏆 Wins [ **`{percentageWins}`** ]
                  Value: "> {wins}"
                  Inline: true
                - Name: 🚫 Losses [ **`{percentageLosses}`** ]
                  Value: "> {losses}"
                  Inline: true
                - Name: 🔗 Neutrals [ **`{percentageNeutrals}`** ]
                  Value: "> {neutrals}"
                  Inline: true
                - Name: • Latest 5 games
                  Value: "```{latest-games}```"
              Timestamp: true
              Footer: "{games} games played"

Changelog:

  • Modified the whole system where the addon gets the words
    • The game should start faster

Config changes:

  • YAML:
     BlacklistedWords: []
      # List of blacklisted words | In lowercase
Back
Top