Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static void getKits() {
- File f, membros;
- f = new File(pl.getDataFolder(), "Kits");
- membros = new File(f + "/membro.yml");
- if (!f.exists()) {
- f.mkdirs();
- }
- if (!membros.exists()) {
- try {
- membros.createNewFile();
- pl.saveResource(f + "/membro.yml", true);
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment