promotional bannermobile promotional banner

NoName_mods PlayerAPI

Client-side Fabric library giving mods a clean, high-level API for player input, inventory, world queries, look control, events, scheduling, and human-like automation, so they never touch Minecraft internals. The shared base for Ceres, Poseidon, and ESP.

File Details

playerapi-1.12.0.jar

  • R
  • Jun 17, 2026
  • 441.83 KB
  • 222
  • 26.1.2
  • Fabric

File Name

playerapi-1.12.0.jar

Supported Versions

  • 26.1.2

Curse Maven Snippet

Fabric

modImplementation "curse.maven:noname-mods-playerapi-1579079:8269280"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

[1.12.0]

Added

  • UpdateChecker — shared GitHub-release update checker for all PlayerAPI-based mods, so the logic lives in one place instead of being copy-pasted per mod. UpdateChecker.check(modId, releasesApiUrl) fetches the latest release, compares versions, and notifies in chat.
    • Minecraft-version aware: release tags use <modVersion>+<mcVersion> (e.g. 1.2.0+26.1.2). If a newer release targets a different MC version than the one running, the notice says so rather than implying it's installable. Tags without +mcVersion behave as before (version-agnostic).
    • Click to hide: each notification ends with a [Hide] link that suppresses re-notification for that specific version (a genuinely newer version later still notifies). Dismissal state is stored per-mod in PlayerAPIConfig.
  • /playerapi dismissupdate <modid> client command (registered by PlayerAPI) that the [Hide] link runs; with an ALLOW_COMMAND fallback for servers that override the command tree.

Changed

  • PlayerAPI's own update check now routes through UpdateChecker (removed its duplicated checker code).