Config

data/config.lua

General configuration is found in this file.

Defaults

local config = {
    render_line = true,
    render_line_alpha = 100,
    
    render_text = false,
    render_text_font = 2,
    render_text_color = {r = 255, g = 255, b = 255, a = 255},

    render_text_bg = false,
    render_text_bg_color = {r = 0, g = 0, b = 0, a = 100},

    required_item = "hacking_implant",    -- Require item to be used to use resource
    consume_item  = true,                 -- Remove item on use
    permanent_use = true,                 -- Item use is permanent

    character_restrictions  = false,
    job_restrictions        = false,
    group_restrictions      = false,

    view_skill_points_command = "ti_watchDogs:viewSkills",
    view_skill_binds_command = "ti_watchDogs:viewBinds",

    hide_ui_command = "-ti_watchDogs:toggle",
    show_ui_command = "+ti_watchDogs:toggle",

    show_ui_hotkey = "GRAVE",

    skill_points_per_level = 2,
    
    level_algorithm = function(level)
        return math.floor(100 * (level ^ 2.5))
    end,

    skill_level_algorithm = function(level)
        return math.floor(level ^ 2.5)
    end
}

Last updated