{"id":21331999,"url":"https://github.com/quantumbagel/statify","last_synced_at":"2025-03-16T00:44:26.242Z","repository":{"id":209926095,"uuid":"723121077","full_name":"quantumbagel/Statify","owner":"quantumbagel","description":"Statify is a minimalist SpigotMC stat plugin.","archived":false,"fork":false,"pushed_at":"2023-11-29T20:19:31.000Z","size":19,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-22T13:51:31.083Z","etag":null,"topics":["java","minecraft","minecraft-plugin","quantumbagel","resource-efficient","spigot-api","spigot-plugin","spigotmc-plugins","stats"],"latest_commit_sha":null,"homepage":"https://modrinth.com/plugin/statify","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/quantumbagel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-11-24T18:35:50.000Z","updated_at":"2024-02-29T14:25:43.000Z","dependencies_parsed_at":"2023-11-29T21:38:59.673Z","dependency_job_id":null,"html_url":"https://github.com/quantumbagel/Statify","commit_stats":null,"previous_names":["quantumbagel/statify"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quantumbagel%2FStatify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quantumbagel%2FStatify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quantumbagel%2FStatify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quantumbagel%2FStatify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quantumbagel","download_url":"https://codeload.github.com/quantumbagel/Statify/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243809843,"owners_count":20351407,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","minecraft","minecraft-plugin","quantumbagel","resource-efficient","spigot-api","spigot-plugin","spigotmc-plugins","stats"],"created_at":"2024-11-21T22:45:39.632Z","updated_at":"2025-03-16T00:44:26.223Z","avatar_url":"https://github.com/quantumbagel.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Statify - Simple Minecraft Stats Done Right\n\nHi! I'm @quantumbagel, and this is my first plugin - Statify. It's a tiny (\u003c50kb), resource-efficient, and powerful serverside plugin to get stats for one player - or the entire server.\n\n### Why do I need this?\n\nIf you want a way to aggregate stats throughout the server (not just through the Statistics menu for one player - this plugin allows easy visualization of stats.\n\n\n### Pros/Cons\n\nHere's a list of pros and cons of this plugin (this isn't a *perfect* plugin)\n\n#### Pros\n\n* Complex queries allowed (`killed:zombie+killed:skeleton`, `(killed:zombie+killed:skeleton)^custom:beds_broken`, or even `tan(killed:zombie) + killed:skeleton`)\n* Ranking of individual categories for a certain player\n* Ability to create and save complex queries under a shorthand\n* Yes, there *is* a recursion detector\n\n#### Cons\n* No autocomplete, you have to know the general layout of MC stats (for an excellent guide, check https://minecraft.fandom.com/wiki/Statistics)\n* My first plugin, so there are probably copious quantities of bugs and glitches\n* Doesn't work well with offline-mode (cracked Minecraft) because of the possibility of duplicate usernames\n* No multithreading\n* No custom command sanity checks\n* Bugginess with really big numbers \u003e:(\nThis is a *Bukkit* plugin, so put the .jar in the `plugins` folder of your Spigot/Bukkit/CraftBukkit server. \n\n\n### How do I even use these commands?\n*NB: [description] is NOT REQUIRED, equals sign after is DEFAULT VALUE, \u003cdescription\u003e IS REQUIRED*\n### /leaderboard, /lb\n\n\n#### Format:\n\n\n`/leaderboard [number of top entries]=10 \u003ccomplex expression\u003e`\n\n\n#### Examples:\n\n\n`/lb killed:zombie` (A simple request for the top 10 player zombie kills)\n\n\n`/lb 5 killed:zombie` (A request for the top 5 player zombie kills)\n\n\n\n\n`/lb killed:total` (A request for the player with the highest sum of the \"killed\" category (most entity kills))\n\n\n`/lb APlayerOfMinecraft:kd` (APlayerOfMinecraft is username, kd is custom command that user defined (in this case kill differential))\n\n\n`/lb killed:zombie + APlayerOfMinecraft:kd` (You can use both in conjunction using these stats as numbers)\n\n\n`/lb killed:zombie * APlayerOfMinecraft:kd + custom:walk_one_cm`\n\n### /stat\n#### Format:\n\n\n`/stat [username]=\u003cplayer who is sending\u003e \u003ccategory\u003e [number of top entries]=10`\n\n\n#### Examples\n\n\n`/stat killed` (returns top 10 ranking of the \"killed\" category for the player who sent the message)\n\n\n`/stat killed 5` (returns top 10 ranking of the \"killed\" category for the player who sent the message)\n\n\n`/stat APlayerOfMinecraft killed` (returns top 10 ranking of the \"killed\" category of the player \"APlayerOfMinecraft\")\n\n\n`/stat APlayerOfMinecraft killed 5` (returns top 5 ranking of the \"killed\" category of the player \"APlayerOfMinecraft\")\n\n\n### /custom\n\n\n#### Format:\n\n\n`/custom set \u003ccommand name\u003e \u003ccomplex expression\u003e`\n\n\n`/custom list [username]=\u003cplayer who is sending\u003e`\n\n\n`/custom get [username]=\u003cplayer who is sending\u003e \u003ccommand name\u003e`\n\n\n`/custom delete \u003ccommand name\u003e`\n\n\n#### Examples\n\n\n`/custom set kd killed:total-killed_by:total` (Set the player who is sending's custom command \"kd\" to \"killed:total-killed_by:total\". If the player's name was \"APlayerOfMinecraft,\" this could be referenced the exact same way as the `/leaderboard` examples above.)\n\n\n`/custom list` (List the current player's defined commands)\n\n\n`/custom list APlayerOfMinecraft` (List the player \"APlayerOfMinecraft\"'s defined stats)\n\n\n`/custom get kd` (Print the current definition of the custom stat `kd` for the current player)\n\n\n`/custom get APlayerOfMinecraft kd` (Print the current definition of the custom stat `kd` for the player \"APlayerOfMinecraft\")\n\n\n`/custom delete kd` (Delete the command `kd` for the current player, if defined)\n\n\n### /playerrank\n\n\n#### Format\n\n\n`/playerrank [number of top entries]=10`\n\n\n#### Examples\n\n\n`/playerrank` (List the top 10 players on the server using the PlayerScore algorithm that I made up on the spot)\n\n\n`/playerrank 5` (List the top 5 players on the server)\n\n\nThat's all - I hope you enjoy this little plugin!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquantumbagel%2Fstatify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquantumbagel%2Fstatify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquantumbagel%2Fstatify/lists"}