can u guys give me a example how to set up: items: - "1:1:1" - "2:2:2" https://github.com/luca28pet/AdvancedKits/blob/master/resources/kits.yml#L15
PHP: $data = explode(":", $string); // "stone:0:1"$item = Item::fromString($data[0]);$item->setDamage((int) $data[1]);$item->setCount(max(1, (int) $data[2]));// rest figure out yourself, it's pretty easy if you know the function unset, array_values and array related functions ;)