Exports

Client

hasCooldown()

Checks if there is an active cooldown.

Returns: true/false - True or False

Example:

local cooldown = exports.zrx_repairkit:hasCooldown()

if cooldown then
    print('yes')
else
    print('no')
end

isBusy()

Checks if there is an active action.

Returns: true/false - True or False

Example:

local isBusy = exports.zrx_repairkit:isBusy()

if isBusy then
    print('yes')
else
    print('no')
end

Last updated