• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Combining User Files

tatteredking

Well-known member
I've got two user files that I am trying to detyermine if there is an easy way to combine them. I'm not a programmer and don't know a lot about XML, but it looks like one could conceivably cut and paste the guts of one file into the other.

Just wondering if there is an easier way to combine files.
 
The correct places for cutting and pasting are:

Every .user file begins with:

Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<document signature="Hero Lab Data"/>
and ends with:

Code:
</document>

Make sure you don't duplicate either of those elements, and that the material you're adding gets in before the closing </document> tag.

If you're only copying some of what you've created, and not all of them, each of the things you've defined will begin with:

Code:
<thing

and end with:

Code:
</thing>

So make sure you copy those elements and all the data between them.
 
Back
Top