Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
/ PremiumPoints Public archive

PremiumPoints is a Minecraft economy plugin based on premium points currency, with SQLite and MySQL database support.

License

Notifications You must be signed in to change notification settings

padrewin/PremiumPoints

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PremiumPoints

Total Downloads   Latest Release   Jenkins Build   GitHub Actions Workflow Status

  • PremiumPoints is a currency Minecraft plugin, adding the ability to manager points 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.
  • This is a continuation of PlayerPoints plugin, originally developed by black_ixx.

📖 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

PremiumPoints is compatible with Spigot and any forks of it.

Note

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


</> For developers

spigot

PremiumPoints 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:
  - PremiumPoints

Maven:

  • Repository
<repository>
   <id>com.github.padrewin</id>
   <url>https://maven.pkg.github.com/padrewin/PremiumPoints</url>
</repository>
  • Dependency
    • Replace TAG with the latest version available; example 1.3.3.
<dependency>
  <groupId>dev.padrewin</groupId>
  <artifactId>premiumpoints</artifactId>
  <version>TAG</version>
  <scope>provided</scope>
</dependency>