Framework Bridge
The Core Bridge module provides a unified API across multiple frameworks for player data, identity, inventory, balances, jobs, and more. The examples below reflect the boii_core implementation, but the API remains consistent across all supported frameworks.
Accessing the Module
Server
get_players()
Returns all players connected to the server.
Parameters
-
-
None
Example
get_player(source)
Retrieves player data by source ID.
Parameters
source
number
Player source ID
Example
get_id_params(source)
Generates identifier query and parameters.
Parameters
source
number
Player source ID
Example
get_player_id(source)
Returns the player's main identifier.
Parameters
source
number
Player source ID
Example
get_identity(source)
Returns a player's identity information.
Parameters
source
number
Player source ID
Example
get_inventory(source)
Gets a player's inventory.
Parameters
source
number
Player source ID
Example
get_item(source, item_name)
Gets a specific item from the player's inventory.
Parameters
source
number
Player source ID
item_name
string
Name of the item
Example
has_item(source, item_name, item_amount?)
Checks if a player has an item in their inventory.
Parameters
source
number
Player source ID
item_name
string
Name of the item
item_amount?
number
Optional quantity (default: 1)
Example
add_item(source, item_id, amount, data?)
Adds an item to a player's inventory.
Parameters
source
number
Player source ID
item_id
string
ID of the item
amount
number
Quantity
data?
table
Optional metadata (e.g. ammo)
Example
remove_item(source, item_id, amount)
Removes an item from a player's inventory.
Parameters
source
number
Player source ID
item_id
string
ID of the item
amount
number
Quantity to remove
Example
update_item_data(source, item_id, updates)
Modifies an item entry (e.g. ammo or durability).
Parameters
source
number
Player source ID
item_id
string
ID of the item
updates
table
Data to apply (key/value)
Example
get_balances(source)
Returns all account balances.
Parameters
source
number
Player source ID
Example
get_balance_by_type(source, balance_type)
Gets a specific account balance.
Parameters
source
number
Player source ID
balance_type
string
Type: "cash", "bank"
Example
add_balance(source, balance_type, amount, sender?, note?)
Adds money to a player account.
Parameters
source
number
Player source ID
balance_type
string
Account type
amount
number
Amount to add
sender?
string
Optional sender description
note?
string
Optional transaction note
Example
remove_balance(source, balance_type, amount, recipient?, note?)
Removes money from a player account.
Parameters
source
number
Player source ID
balance_type
string
Account type
amount
number
Amount to remove
recipient?
string
Optional recipient name
note?
string
Optional transaction note
Example
get_player_jobs(source)
Returns a list of jobs the player currently holds.
Parameters
source
number
Player source identifier
Example
player_has_job(source, job_names, check_on_duty?)
Checks whether a player has one of the specified jobs. Optionally checks if they're on duty.
Parameters
source
number
Player source identifier
job_names
table
List of job names to check
check_on_duty
boolean?
Whether to require on-duty status
Example
get_player_job_grade(source, job_id)
Returns the player's rank (grade) for the specified job.
Parameters
source
number
Player source identifier
job_id
string
Job ID to check
Example
count_players_by_job(job_names, check_on_duty?)
Counts players with a specific job. Optionally checks duty status.
Parameters
job_names
table
List of job names to count
check_on_duty
boolean?
Whether to check for on-duty only
Example
get_player_job_name(source)
Returns the first job name assigned to a player.
Parameters
source
number
Player source identifier
Example
adjust_statuses(source, statuses)
Applies status modifications to a player server-side.
Parameters
source
number
Player source identifier
statuses
table
Table of status values
Example
register_item(item, cb)
Registers an item as usable and calls the callback on use.
Parameters
item
string
Name of the usable item
cb
function
Function to run on item usage
Example
Client
get_data(key?)
Returns the full or partial player data table.
Parameters
key
string
(Optional) Specific key to get
Example
get_identity()
Returns a structured identity object.
Example
get_player_id()
Returns the current player's unique identifier.
Example
Last updated