A standalone reputation system that provides a flexible approach to managing reputations for various entities like jobs, NPC groups, or factions. It operates independently of any external framework, making it suitable for a wide range of applications.
Client Functions
get_reputations
Retrieve a list of all reputations the player has.
Function
localfunctionget_reputations() utils.callback.cb('boii_utils:sv:get_reputations', {}, function(reputation_data)if reputation_data thendebug_log('info', 'Reputation data fetched: '.. json.encode(reputation_data))return reputation_dataelsedebug_log('err', 'Failed to fetch reputation data.')returnnilendend)endexports('get_reputations', get_reputations)utils.reputation.get_reputations = get_reputations