skillTree.lua

Documentation for skillTree.lua Configuration

XP for Finishing a Job

Shared.XPForFinishedJob = 30
  • Description: Specifies the amount of XP awarded to the skill tree when a player completes a job.

  • Example: 30 XP is granted upon finishing a job.


Skills List

Shared.SkillsList = {
    ["poolCleaner"] = {
        {
            points = 1,
            index = 62,
            icon = "fas fa-wifi",
            lines = { rightBottom = false, leftBottom = false, },
            description = "",
            img = "",
            uid = "robot_pickup_range_1",
            title = "",
        },
        -- Additional skills...
    },
}
  • uid: Unique identifier for the skill.

  • title: Name of the skill.

  • description: Explains the effect of the skill.

  • effect: Value of the skill's effect (e.g., 5% bonus).

  • points: Points required to unlock the skill.

  • index: Skill's position in the skill tree.

circle-exclamation

Last updated