2025.2 Releases May 2025!
Check it Out!
Bit
Bit Source CodeBug & Suggestion Tracker
2024.1
  • Bit
  • Docs
  • Bit Plugins
  • Bit Changelogs
  • Bit Hosted
2024.1
  • Welcome
  • Updating
  • Commands
  • FAQ
  • Install Plugins
  • Dev
    • Create Plugins
      • Commands
      • Events
      • Run function on bot startup
      • plugin.json
      • update.json
      • Updating to Bit 2024.1
Powered by GitBook
LogoLogo

Copyright 2018-2025 Lockyz Media

On this page

Was this helpful?

Edit on GitHub

Updating

This version of Bit will enter End of Support the 23rd of April 2025.

This means it will only receive major bug fixing and security updates!

Bit 5.2 to Bit 2024.1

Things to remember

  • Make sure ALL plugins are updated to 2024.1

    • Bit 2024.1 makes MAJOR changes to the bots command handler. Things WILL break

  • Make sure to delete all the Bit and Bit Core files. This means EVERYTHING bar the /plugins folder and then everything inside the /plugins/bit-core folder!

Updating config.json

All config options are in snake case now. Please see the example below!

The config now requires a guild_only, language and dev_only field, you can follow the format below (using their default values)

"guildOnly": false,
"language": "en",
"devmode": false

Currently, language can only be "en".

Example

{
    "embed_colours": {
        "positive": "#00FF1C",
        "negative": "#FF0000",
        "neutral": "#9013FE",
        "main": "#86C1FD",
        "secondary": "#50E3C2"
    },
    "botIDs": {
        "logs": "LOGGING ID",
        "guild": "GUILD ID",
        "client": "CLIENT/APPLICATION ID",
        "owner": "OWNER ID"
    },
    "activities": {
        "type": "custom, playing, listening or watching",
        "state": "The text that displays as the status",
        "status": "online, idle, invisible or dnd"
    },
    "guildOnly": false,
    "language": "en",
    "devmode": false,
    "token": "BOT TOKEN"
}

Last updated 2 months ago

Was this helpful?