• 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

Removing Attunment

Elgon

Member
Hi,

In our campaign, we decided to remove the attunment demand. is there an option to remove it in the Hero Lab ? if not a checkbox or an option in the configure hero, maybe as somekind of script ?

in addition, how can we make "combined" items ? (as mentioned in the DMG)

Thanks,
 
Add a mechanic with an eval script that increases the tAttunMax field on the hero to something ridiculous, like 99.

Make combined items by copying what exists in the editor and adding the effects of another item.
 
Thanks for the quick reply.
I am not so good with scripts, may I ask for a specific instruction on where and how to write such a script for the attunment ?
Thanks again.
 
Once you've created the mechanic, hit the blue "Eval Scripts" button in the upper right while you have it selected. For Phase choose PostLevels and for Priority choose 10000

Then enter the following code:

Code:
herofield[tAttunMax].value += 99
 
Back
Top