How to get Sub Info Within a Config Code: Bronze1: Title: §l§7§kTRY§r §9§lBronze Crate §7§kTRY X: 809.000000 "Y": 13.000000 Z: 1040.500000 How do i get the Title In this Config? and X Y Z Etc
There are 3 ways, pick whichever is easiest for you. PHP: //method 1$config->getNested("Bronze1.Title");//Method 2$config->get("Bronze1")["Title"];//Method 3$config->getAll()["Bronze1"]["Title"];