• 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

Help With Creating New Wondrous Item

Ranger3277

New member
I need help creating a headband for my magus character. My gamemaster gave this item to my character, and somehow I either am not entering the right information into the description text OR I need the script lines to put into the description text. I'm sure I use the io for the unique id, but everything else ... argh!

The stats for the headband are: +4 Intelligence, +2 Constitution and +2 to my magus arcane pool.

Any help would be greatly appreciated.

Thanks in advance!
 
The stats for the headband are: +4 Intelligence, +2 Constitution
In the editor do "New (Copy)" against Headband of Vast Intelligence and a Belt of Mighty Constitution and look at there scripts. That gets you almost complete.

+2 to my magus arcane pool.
For this go to "Develop->Enable Data File Debugging" then open your character. Go to the "In-Play" tab and right click on the "?" next to your Arcane Pool. That will give you the "Unique ID" of this class ability. Use that to complete this script by replacing XXXXX with the unique ID. What this does is increase the Tracker Max value by 2.

Code:
hero.childfound[XXXXX].field[trkMax].value += 2
 
Back
Top