Makes a previously hidden action button visible in the inventory UI.
Makes a previously hidden action button visible in the inventory UI.
exports['jaksam_inventory']:showActionButton(id)
-- Show a button that was registered as hiddenexports['jaksam_inventory']:showActionButton('police_actions')-- Show button when player gets a specific jobAddEventHandler('esx:setJob', function(job) if job.name == 'police' then exports['jaksam_inventory']:showActionButton('police_actions') endend)