Question about custom.xml

If something doesn't fit in any other forum then post it here.
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
s5n4K3s
Posts: 5
Joined: Thu Jul 16, 2009 9:06 pm

Question about custom.xml

Post by s5n4K3s »

Hi there!
i see a custom.xml file

Code: Select all

         File[] files = dir.listFiles();        for (File f : files)        {            if (f.getName().endsWith(".xml") && !f.getName().startsWith("custom"))                hash.add(f);        }        File customfile = new File(Config.DATAPACK_ROOT, dirname + "/custom.xml");        if (customfile.exists())            hash.add(customfile);    } 
in gameserver/skills/SkillsEngine.java

What can i do with this file? can i overwrite existing skills and create new ones? :D
Thanks!
"There is no 'patch' for stupidity"
Post Reply