Loading...
mc.hypixel.net
Click to copy IP
Loading...
(Insert url here)
Click to join
Avatar
Welcome to Cobalt!
To join our community, please login or register!
In the main config (skills.conf), the user will be able to configure the basic settings for each skill. Things like the permission needed to gain EXP in the skill, the skill's display name, the base amount of EXP earned for that skill, etc etc.

Each skill is listed by its skill name. This cannot be changed. It is used by PixelSkills to find the settings for this skill. (i.e. don't change "Breeder" at the top). Inside of each skill's "block" lies all the basic settings that are configurable for the skill.


Access-Permission: This is the permission node that a player needs to have in order to gain EXP when they do this skill's task. It can be set to "" to disable requiring a permission.

Display-Name: This is the display name for the skill. Different from the actual skill name, this can be changed to whatever you want. (I.e if Darwinist is too big/confusing of a word, change it to "Evolutionary" or something and it will display the Darwinist skill as Evolutionary to your players)

Enabled: This is the true/false value that sets whether the entire skill is disabled or not. Setting this value to false will disable the skill, and no players will gain EXP in it even with the Access-Permission.

EXP-Per-Task: This value sets the base value (before modifiers, if any) of EXP a player gains for doing tasks in this skill. The EXP values are stored and read as decimal numbers (like 0.75) so you can change this value to basically any number greater than 0.01.

Multiple-Rewards: A true/false value, this controls the rewarding module by determining if the skill has the chance to give the player multiple rewards when the skill attempts to reward them

Skill-specific settings (like modifiers, black/white lists, etc) can be found on each skill's respective wiki page

Below is the entire skills.conf file in its default form:
 
# Main skill registry. You'd enable/disable skills in here as well as do some basic configuration
Skills {
  "Breeder" {
    # Required to gain EXP in the skill, set to "" to disable
    "Access-Permission"="pixelskills.skill.breeder"
    # The name displayed to represent this skill, you can change this
    "Display-Name"="Breeder"
    # If false, skill is completely disabled
    "Enabled"=true
    # Default amount of EXP gained per task
    "EXP-Per-Task"=1
    # If true, players can get more than one reward when the attempt to reward them is ran
    "Multiple-Rewards"=false
  }
  "Collector" {
    # Required to gain EXP in the skill, set to "" to disable
    "Access-Permission"="pixelskills.skill.collector"
    # The name displayed to represent this skill, you can change this
    "Display-Name"="Collector"
    # If false, skill is completely disabled
    "Enabled"=true
    # Default amount of EXP gained per task
    "EXP-Per-Task"=1
    # If true, players can get more than one reward when the attempt to reward them is ran
    "Multiple-Rewards"=false
  }
  "Darwinist" {
    # Required to gain EXP in the skill, set to "" to disable
    "Access-Permission"="pixelskills.skill.darwinist"
    # The name displayed to represent this skill, you can change this
    "Display-Name"="Darwinist"
    # If false, skill is completely disabled
    "Enabled"=true
    # Default amount of EXP gained per task
    "EXP-Per-Task"=1
    # If true, players can get more than one reward when the attempt to reward them is ran
    "Multiple-Rewards"=false
  }
  "Fisherman" {
    # Required to gain EXP in the skill, set to "" to disable
    "Access-Permission"="pixelskills.skill.fisherman"
    # The name displayed to represent this skill, you can change this
    "Display-Name"="Fisherman"
    # If false, skill is completely disabled
    "Enabled"=true
    # Default amount of EXP gained per task
    "EXP-Per-Task"=1
    # If true, players can get more than one reward when the attempt to reward them is ran
    "Multiple-Rewards"=false
  }
  "Gladiator" {
    # Required to gain EXP in the skill, set to "" to disable
    "Access-Permission"="pixelskills.skill.gladiator"
    # The name displayed to represent this skill, you can change this
    "Display-Name"="Gladiator"
    # If false, skill is completely disabled
    "Enabled"=true
    # Default amount of EXP gained per task
    "EXP-Per-Task"=1
    # If true, players can get more than one reward when the attempt to reward them is ran
    "Multiple-Rewards"=false
  }
}


 
 

199