• 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

Encumbrance Reduction

AWizardInDallas

Well-known member
How would I reduce the weight of everything in a container by 10%? I'm looking at the item in the Arms & Equipment guide called a framed pack.
 
It looks like the best way to handle this is in the "gear" script, which the editor doesn't handle properly yet (an omission on my part).

Create the Framed Pack as normal, then open the file in a text editor such as notepad. Find the XML element for the Framed Pack, and add this code just before the closing </thing> tag:

Code:
    <gear><![CDATA[
      ~ We only carry 90% of our contents weight
      field[gearNet].value *= 0.9
      ]]></gear>

Then save the file and re-load it into Hero Lab. You should see the total weight of anything in the Framed Pack reduced to 90% of normal.

Hope this helps!
 
Back
Top