Configuration Help/Jobs Config Help

  • JOBNAMES must be all UpperCase.
  • Every value here has an internally set default in case you want to leave it out.
  • 'maxplayers' defines how many players can have this job at once, where 0 is the default and equals unlimited.
  • 'worlds' is a CASE SENSITIVE list of the worlds the job will have any effect on, it's default if you choose to leave it out is a list of all the worlds on the server.
  • 'pkl' is a boolean defining whether or not dieing with this job will result in losing the amount of money set in config.yml under 'DeathLosses.Loss' PER JOB WITH PKL.
  • The 'break', 'place', 'mobs', 'fish', 'tools', 'craft', 'smelt', and 'brew' fields are all very similar in their formatting.
    • None are required, and they will all default as being empty.
    • 'break' is the payout for breaking blocks. Items listed under it are listed using their entry from the Bukkit Material (or Entity) Class, which sometimes results in underscores in the names.
    • Likewise, if you need to use a Data Value on a block (say, WOOL, for coloring), you can add a "#" and then the value you want.
  • Lastly, the enchant fields are used to define whether or not players get paid for enchanting.
    • 'active' is a simple boolean, and 'payPerLevel' is a double. Not necessary to have in if you don't want it, and will default to off.

This is a link to the accepted values list from the Classes: http://dev.bukkit.org/bukkit-plugins/minejobs/pages/configuration-help/accepted-job-values/

# jobs:
#   JOBNAME:
#     maxplayers: 0
#     break:
#       STONE: 0.25
#       GOLD_ORE: 5
#       CROPS#7: 0.66
#     place: {}
#     mobs: {}
#     fish: {}
#     tools: {}
#     craft: {}
#     smelt: {}
#     brew: {}
#     enchant:
#       active: false
#       payPerLevel: 0
#     worlds:
#     - world1
#     - world2
#     pkl: false
jobs:
  MINER:
    maxplayers: 0
    break:
      STONE: 0.25
      GRAVEL: 0.25
      GOLD_ORE: 5
      IRON_ORE: 7
      COAL_ORE: 3
      LAPIS_ORE: 15
      MOSSY_COBBLESTONE: 5
      OBSIDIAN: 10
      DIAMOND_ORE: 20
      REDSTONE_ORE: 9
      SMOOTH_BRICK: 3
      EMERALD_ORE: 25
    worlds:
    - world
    - world_nether
    - world_the_end
  FARMER:
    maxplayers: 0
    break:
      GRASS: 0.01
      BROWN_MUSHROOM: 1
      RED_MUSHROOM: 1
      WHEAT: 5
      CACTUS: 3
      SUGAR_CANE_BLOCK: 4
      PUMPKIN: 7
      MELON_BLOCK: 7
      CARROT: 7
      POTATO: 7
    worlds:
    - world
    - world_nether
    - world_the_end
  LUMBERMAN:
    maxplayers: 0
    break:
      SAPLING: 1
      LOG: 5
    worlds:
    - world
    - world_nether
    - world_the_end
  BUILDER:
    maxplayers: 0
    place:
      STONE: 1
      DIRT: 0.10
      COBBLESTONE: 0.10
      WOOD: 1
      LOG: 2
      GLASS: 2
      SANDSTONE: 1
      STONE_PLATE: 2
      BRICK: 3
      MOSSY_COBBLESTONE: 2
      OBSIDIAN: 5
    worlds:
    - world
    - world_nether
    - world_the_end
  HUNTER:
    maxplayers: 0
    mobs: 
      CHICKEN: 2
      COW: 2
      MUSHROOM_COW: 10
      PIG: 2
      SHEEP: 2
      SQUID: 2
    worlds:
    - world
    - world_nether
    - world_the_end
  DEMONSLAYER:
    maxplayers: 0
    mobs: 
      BLAZE: 10
      CAVE_SPIDER: 3
      CREEPER: 7
      ENDERMAN: 10
      ENDER_DRAGON: 2000
      GHAST: 15
      MAGMA_CUBE: 15
      PIG_ZOMBIE: 2
      PLAYER: 50
      SILVERFISH: 1
      SKELETON: 5
      SLIME: 2
      SPIDER: 5
      WITCH: 20
      WITHER: 2000
      ZOMBIE: 5
    worlds:
    - world
    - world_nether
    - world_the_end

Comments

Posts Quoted:
Reply
Clear All Quotes