An easy to use API to get per-player configs.
Methods
Plugin exampleCode (Java):
PlayerConfigAPI pca = new PlayerConfigAPI(this);
pca.exists(player);//Returns true if player config exists, else returns false
pca.createConfig(player);//Creates a config for the player
pca.set(player, configPath, value);//Sets a configPath to a value
pca.getString(player, configPath);////Returns String from configPath
pca.getInteger(player, configPath);//Returns int from configPath
pca.getBoolean(player, configPath);//Returns boolean from configPath
To do:Code (Java):
//This plugin example creates a config for each player upon joining
PlayerConfigAPI pca = new PlayerConfigAPI(this);
public void onEnable() {
getServer().getPluginManager().registerEvents(this, this);
}
@EventHandler
public void onPlayerJoin(PlayerJoinEvent e) {
Player p = e.getPlayer();
if (!pca.exists(p))
{
pca.createConfig(e.getPlayer());
pca.set(p, "lastName", p.getName());
}
}
- Add more methods (for more variable types)

PlayerConfigAPI 1.0.1
Creates a config per-player.