API

The API for the utility is rather large and id being added too consistently. It can be a little over bearing due to the sheer amount of functions available.

The following pages cover the API specific to those sections.

Accessing Utils

Place the following export into the resource you are working on. You can either place this individually server / client or you can place into a shared file.

local utils = exports.boii_utils.get_utils()

After you can use the utils object to directly access any of the functions. All of the available functions have been listed at the top of the respective pages.

Example

local utils = exports.boii_utils.get_utils()

if utils then
    utils.debug.log('Utils object found.')
end

Last updated