I'm having a problem with a mod I'm working on. I'm trying to add a new skill tree, but it's not showing up. I can select it and get the item loadout associated with it, but it doesn't show up in my skill list. Any ideas? My code's attached below.
XML parsing failed XML parsing failed: syntax error (Line: 6, Character: 0) Error:unexpected start-tag (root element already specified) Specification:http://www.w3.org/TR/REC-xml/ 3: <loadout type="armor" subtype="Viking Beard" always="1" /> 4: </skill> 5: 6: <ability name="Viking Beardery" icon="skills/skill_berserker.png" skill="401" startSkill="1"> 7: <description text="With the power of your MIGHTY BEARD, you can perform feats beyond the ken of normal men. Also the ladies like it."/> 8: </ability> 9:
It means that somewhere above that line, there's a line that wasn't properly ended. Either there's a line with no "/" at the end of it, or there's some spanbracket like <buff> that's missing a </buff>.
I figured it out, turns out WinZIP adds an extra folder when you zip something, unlike 7zip which I usually use. The copy I was running was the unzipped copy, which I guess doesn't completely work. Onamar, check your file structure if you're getting the same problem. I also realized I didn't have the <skillDB> tags, so that's something else to check if it's still giving you trouble. It's also the cause of the error Essence posted, since XML thought my first tag was the root tag and did't know what I was talking about when it found another one.