Skip to content

Latest commit

 

History

History
63 lines (54 loc) · 3.12 KB

File metadata and controls

63 lines (54 loc) · 3.12 KB

ColdBits

Total Downloads   Latest Release   Jenkins Build   GitHub Actions Workflow Status

  • ColdBits is a currency Minecraft plugin, adding the ability to manage bits (premium/custom currency) for every player, with SQLite and MySQL database support.
  • Supports SQLite and MySQL database. Default database is SQLite which can be edited later in config.yml file.
  • This plugin is based on ColdDev plugin library.

📖 Documentation

All information is included and can be found in this repository's Wiki.
For any questions or support, you can join our Discord server. Here you can find all the support you need.


⚙️ Server compatibility

ColdBits is compatible with Spigot and any forks of it.

Note

Recommending using Paper.
CraftBukkit is NOT and will NOT be supported.


</> For developers

spigot

ColdBits is a standalone plugin, so you will need to install it on any servers that have plugins which depend on it, and specify it as a dependency in your plugin.yml:

depend:
  - ColdBits

Maven:

  • Repository
        <repository>
            <id>colddev-repo</id>
            <url>https://repo.colddev.dev/</url>
<!-- Or use <url>https://hub.colddev.dev/repository/public-releases/</url> -->
        </repository>
  • Dependency
    • Replace ${version} with the latest version available; example 1.0.
        <dependency>
            <groupId>dev.padrewin</groupId>
            <artifactId>coldbits</artifactId>
            <version>${version}</version>
            <scope>provided</scope>
        </dependency>