
The foundation library that every Rynex script depends on. `rx-core` abstracts ESX, QB-Core, QBox, ox_core, and Standalone behind a single `Core` API, so you install it once and every Rynex script you buy from us works on your stack without forks or compatibility shims.
What it provides: a global `Core` table with consistent functions for player identity, money (`cash` / `bank` / `black_money`), jobs, gangs, permissions, inventory items, weapons, vehicles, society accounts, server-to-client callbacks, and player lifecycle events. The same `Core` function does the right thing on every framework — your scripts never need to know which one is installed. Inventory support includes `ox_inventory` (preferred when present), ESX items, and QB items.
`rx-core` ships open source. Nothing about the framework detection or API surface is escrowed — you can read every line. It auto-detects your framework on startup, logs which one it found, and emits one-time warnings if a script calls a function the detected framework doesn't support. A background version checker pings GitHub for new releases and prints a console notice when an update is available.
Standalone servers can use rx-core for identity and coordinates only — money, jobs, and inventory features will no-op with a console warning. If you're not running a framework, most other Rynex scripts won't be useful to you anyway.
