A lightning-fast, Kotlin-powered rating plugin for Paper servers
⚡ Minimal. Modular. Modern. ⚡
AstraRating is a lightweight, flexible player rating system plugin for Minecraft servers running PaperMC. Track, display, and manage player scores to add competition and prestige to your server!
Originally built for the EmpireProjekt community, AspeKt is open to all.
More plugins from AstraInteractive
- Player Ratings: Track and update player ratings.
- Persistent Data: Player data stored in a MySQL/SQLite database.
- Leaderboards: Show off top players in-game or on your website.
- Realtime Reloadable DB: Reload Database in real-time without restarting server!
- Download the latest release from Releases.
- Drop
AstraRating.jarinto your server’s/pluginsfolder. - Restart your server.
- Edit generated
config.ymland other config files
CLICK TO EXPAND
AstraRating supports multiple database types through YAML configuration. The plugin uses a flexible
DatabaseConfiguration system that supports H2, MySQL, MariaDB, and SQLite databases.
Database configuration is stored in: ./plugins/AstraRating/database.yml
rating_database:
type: "H2"
path: "./plugins/AstraRating/ASTRA_RATING_RATINGS"rating_database:
type: "SQLite"
path: "./plugins/AstraRating/ratings.db"
arguments:
- "journal_mode=WAL"
- "synchronous=NORMAL"rating_database:
type: "MySql"
host: "localhost"
port: 3306
user: "astra_rating"
password: "your_secure_password"
name: "astra_rating_db"
arguments:
- "useSSL=false"
- "allowPublicKeyRetrieval=true"
- "serverTimezone=UTC"rating_database:
type: "MariaDB"
host: "localhost"
port: 3306
user: "astra_rating"
password: "your_secure_password"
name: "astra_rating_db"
arguments:
- "useSSL=false"
- "serverTimezone=UTC"| Placeholders | Description |
|---|---|
/%erating_color% |
Show rating color |
/%erating_rating% |
Show player rating |
CLICK TO EXPAND
# Color are sorted by value: [-10, -5, 0, 5, 10]
# Be sure to fill ALL GAPS/INTERVALS - if not you'll have errors in console
# If you don't want this feature - remove coloring section or comment it using '#' symbol
colorings:
# [-inf,-10)
- type: LESS
value: -10
color: "#9c0303"
# [-10,-0)
- type: LESS
value: 0
color: "#eb3131"
# [0,0]
- type: EQUALS
value: 0
color: "#FFFFFF"
# [0,10)
- type: MORE
value: 0
color: "#51a8f5"
# [10,+inf]
- type: MORE
value: 10
color: "#0872cf" | Command | Description | Permission |
|---|---|---|
/aratingreload |
Reload plugin | astra_rating.reload |
/arating reload |
Reload plugin | astra_rating.reload |
/arating rating |
Open rating GUI | - |
/arating rating <like/dislike> <player> <message> |
Raise/Downgrade player rating | astra_rating.vote |
/arating player <player_name> |
Open rating GUI of player | - |
- |
Delete player vote in GUI | delete_report.vote |
- |
Allows player to vote M times per day for the same player | astra_rating.single_player_rate_per_day.M |
- |
Allows player to vote N times per day | astra_rating.max_rate_per_day.N |
