Skip to content

ColdBits API

padre edited this page Oct 27, 2024 · 1 revision

ColdBits

  • You can use ColdBitsAPI to hook your plugin into it.
  • This API is good to use since org.black_ixx's API (original creator) is proxied in dev.padrewin.
  • This meaning that, if you change ColdBits plugins, there are NO changes in how other plugins will work with PremiumPoints. (nothing will break)

MAVEN

Add to pom.xml as dependency.

<dependency>
  <groupId>dev.padrewin</groupId>
  <artifactId>coldbits</artifactId>
  <version>${version}</version>
</dependency>
  • check latest API version here

Add to pom.xml as repository.

<repository>
   <id>colddev-repo</id>
   <url>https://repo.colddev.dev</url>
</repository>

Gradle

maven { url 'https://repo.colddev.dev/' }

Clone this wiki locally