config - Read Minecraft Forge configuration file from Bukkit plugin? -
I'm trying to read one's contents with my bukkit plugin. I can successfully get the file, though I can not read the values of buckikits (as far as I know). Here is an example forge cgg file
:
# configuration file ##################### Player 1 #################### Player 1 {I: player2 = 1 I: player3 = 1} ############## ############ Player 2 ########### Player 2 }
Is it possible to read these values?
Bukkit uses a different format than forge, therefore the methods will not be compatible. You have to write a manual parser, copy whatever uses it, or use it with MCPC + (as you wish, no MCPC + server (a spigot server mixed with forge (a type of buket )).
Comments
Post a Comment