Example with a Ladder!

Example with a ladder!

Config

# -- Settings --
# Whether a message is displayed to everyone when someone gets promoted.
globalMessage = false 
# If true the plugin will start in debug mode.
initialDebug = false 
# How much detail the debugger shows. (0 = Everything, 2 = Important Only) Default: 1
debugDetailLevel = 1 
# Displays less info when starting if true.  
lowDetailMode = true 

# -- Possible Skill Types --

# power, acrobatics, archery, axes, excavation, fishing, herbalism, mining, repair, swords, taming, unarmed, woodcutting
# http://dev.bukkit.org/server-mods/mcmmo-auto-promote/

# -- Group Settings --

ladders {
    default {
        I {
            rank = 100   # Must be unique to the ladder.
            power = 0
        }
        II {
            rank = 90   # Must be unique to the ladder.
            power = 5
        }
        III {
            rank = 80   # Must be unique to the ladder.
            power = 10
        }
        IV {
            rank = 70   # Must be unique to the ladder.
            power = 15
        }
        V {
            rank = 60   # Must be unique to the ladder.
            power = 20
        }
    }
    mining {
        MiningI {
            rank = 100
            mining = 1
        }
        MiningII {
            rank = 90
            mining = 2
        }
        MiningIII {
            rank = 80
            mining = 3
        }
        MiningIV {
            rank = 70
            mining = 4
        }
    }
}

Permissions (Example with PermissionsEx)

groups:
    I:
        default: true
        prefix: '[I] '
        permissions:
        - modifyworld.*
    II:
        prefix: '[II] '
        inheritance:
        - I
    III:
        prefix: '[III] '
        inheritance:
        - II
    IV:
        prefix: '[IV] '
        inheritance:
        - III
    V:
        prefix: '[V] '
        inheritance:
        - IV
    VI:
        prefix: '[VI] '
        inheritance:
        - V
    Admin:
        prefix: '[ADMIN] '
        permissions:
        - '*'
    MiningI:
        permissions:
        - 'somemining.specific.permission'
    MiningII:
        inheritance:
        - MiningI
        permissions:
        - 'somemining.specific.permission'
    MiningIII:
        inheritance:
        - MiningII
        permissions:
        - 'somemining.specific.permission'
    MiningVI:
        inheritance:
        - MiningIII
        permissions:
        - 'somemining.specific.permission'