Skip to content

Releases: Exiled-Team/DiscordIntegration

oops

01 Sep 20:21
9272ffc
Compare
Choose a tag to compare

Fixed a patching error in the plugin.

Update

01 Sep 18:45
9272ffc
Compare
Choose a tag to compare

Updoot to beta.23

16 Jan 23:05
f1a9327
Compare
Choose a tag to compare
  • Fixed event registration for EXILED update

Re-release to fix bot

11 Jan 19:33
f1a9327
Compare
Choose a tag to compare

The bot should be working now, oops :x

Smol updoots

30 Aug 21:40
Compare
Choose a tag to compare
Fix bot reconnection issues.

Fix bot status being stuck at 1/x players.

Many updoots, yay!

17 Aug 16:22
Compare
Choose a tag to compare

Added debug logging to activity updates.
Added feature requested in #97
Added feature requested in #105
Fixed #100
Fixed #106
Fixed #121
Fixed #124
Removed the irrelevant "serverNum" arguments from commands, as each bot is specific to a single SCP server's connection, specifying which server to run commands on was irrelevant.

There's a slight change to how bot log channel configs are setup, the old way:

    "1": {
      "Logs": {
        "Commands": [
          0
        ],
        "GameEvents": [
          0
        ],

Should now look like this:

    "1": {
      "Logs": {
        "Commands": [
          {
            "Id": 0,
            "LogType": "Embed"
          }
        ],
        "GameEvents": [
          {
            "Id": 0,
            "LogType": "Embed"
          }
        ],

The "LogType" value can be either "Text" or "Embed" anything else is invalid.

6.0.3-1.4.2: Note about applications.commands (#111)

02 Aug 16:53
ad96ca6
Compare
Choose a tag to compare
  • Fixed an issue that would cause some server logs to be endlessly repeated by the bot.
  • Fixed an issue that would cause partial messages between the bot and plugin to break the TCP connection, resulting in lost information.
  • Added a command to the bot /get ServerNumber which will return a list of valid commands that user can run via the bot, on the indicated server.
  • Fixed an issue that caused the main program to not start the additional bots setup via the config.

Some new stuff

08 Jun 03:44
Compare
Choose a tag to compare
  • Re-added the ability for the bot to update channel topics.
  • Added the ability for DI to log client console commands.
  • Removed unused configs from the plugin related to removed features.

More bot updates for status, and some new logging.

07 Jun 14:24
Compare
Choose a tag to compare
  • Should finally have the ratelimiting issue with status updates fixed (seriously guys, change the fucking status_update_interval config for the plugin if there's still issues with this)

  • Added a new logging type Errors. Plugin config: log_errors: true will cause EXILED errors to also be logged through the bot.

  • New bot config for channels, you will need to manually add this config section to make it work:

        "Errors": [
          0
        ]

This is the channelID(s) to log errors to.
The channels config should look something like this now:

  "Channels": {
    "1": {
      "Logs": {
        "Commands": [
          0
        ],
        "GameEvents": [
          0
        ],
        "Bans": [
          0
        ],
        "Reports": [
          0
        ],
        "StaffCopy": [
          0
        ],
        "Errors": [
          0
        ]
      },
      "TopicInfo": [
        0
      ],
      "CommandChannel": [
        0
      ]
    }
  },

More bot updoots

06 Jun 19:57
Compare
Choose a tag to compare
  • Added a check to make sure the bot is not trying to set it's status to the same value it already has.
  • Fixed incorrect message splitting of very large dequeue blocks.

This release should fix both #91 and #93