If it looks like this: Code: root: parent: child: thing1: thing2: .. how can I get down to thing1. The only thing I know is that the top-level is called root. I have this: Code:java config.getConfigurationSection("root"); but how could I get the children of that to be in a String[], so String[0] would be parent, then I could repeat the process to get down to thing1 and 2? Hope I'm making some sense Thanks
I belive that method has a 2nd argument that you can set to true to get sub-values of each sub-value =)
The only argument I can give getConfigurationSection is the path...? Do you know the exact method I can use for this? Thanks for reply
Thanks for replies, I figured it out. Google is my best friend :3 http://stackoverflow.com/questions/9648549/bukkit-get-all-values-under-yaml-path/9649962#9649962