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

Copyright 2018-2025 Lockyz Media

On this page

Was this helpful?

Edit on GitHub
  1. Dev
  2. Create Plugins

update.json

The file required for Bit: Cores plugin update system to work

The bot will check the update json for the latest version of the plugin, where to download it from and what version of Bit: Core it's for.

Option
Description
Accepted Values
Required

download_link

A link to the plugins latest version, is sent to the bots console when outdated

string/url

bit_version

Each bit version can have it's own "latest" version. If a specified version is not found the bot will tell the user to update their Bit version.

array

Update JSON Example

{
    "download_link": "https://cdn.lockyzmedia.com/bit/plugins/xp/latest.zip",
    "bit_versions": {
        "2025.1": "2.0.0"
    }
}

Last updated 4 months ago

Was this helpful?