
Store numeric values of players' stats or balance, specified by a text key. -> With Folia and Multi-Server support!


Please join the Streamline Hub Discord in order to get updates and for me to fully assist you with bugs, questions, or suggestions.
Discord: click here

Store numeric values for players' stats, currency, etc. This is great for servers that need to do a lot of custom currency / statistic logic, but don't want to fully create their own plugin. Use PointsExchange and a GUI plugin of your choice to allow players to buy things with these currencies, or just see their stats.
I originally made this for a server I was making that had dungeons where we wanted to keep track of player's Bosses Killed. I also used it on a proxy server for network-wide currency (Credits).

This offers a very simple configuration and setup all while remaining very light-weight. Connect it to a database for multi-server / network compatibility. Or... just use it with SQLite for a single server.

plugins folder.
/pnts add <player> <points-key> <amount>/pnts set <player> <points-key> <amount>/pnts remove <player> <points-key> <amount>Example:
/pnts add Drakified PlayerGold 5Note: <points-key> is the name of the point you want. It needs to be a single word (like MyCoolPoints)
%jpoints_<points-key>%%jpoints_other_<player-name>_<points-key>%Examples:
/papi parse Drakified %jpoints_PlayerGold% -> Gets the value of PlayerGold from JustPoints as Drakified./papi parse BruhWaffle %jpoints_other_Drakified_PlayerGold% -> Gets the value of Drakified's PlayerGold value from JustPoints as BruhWaffle.
<required>(optional)
/pnts/pnts <add/remove/set> <player> <points-key> <amount>points-key/pnts add Drakified PlayerGold 5/pnts <get> <player> <points-key>points-key.