Recent content by Ensrick

  1. E

    Help! Making a loot mod.

    public static void updateLootXml(Document doc) { XPathFactory xPathfactory = XPathFactory.newInstance(); XPath xpath = xPathfactory.newXPath(); try { NodeList lootgroups = (NodeList) xpath.evaluate("//lootgroup[starts-with(@name, 'groupScrap')]", doc...
  2. E

    Help! Making a loot mod.

    I'm familiar with tweaking the contents of XML files from various games, however, I want to take my changes and package them as a mod. To my understanding, this requires some "set xpath="..." method or I have to remove the nodes I want to modify and use a node like "<insertAfter/> with all...
Back
Top