• 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

Doing a template the hard way

frumple

Well-known member
I am working on a template that allows the user to choose different "levels" of the template to act on the base creature via. a drop down menu in its background tab.

The issue I am running into is one of timing. The drop down menu looks to do its work at First/50000 (determining which option is picked and then assigning a value for that option to the things abValue field for later use). However, a template looks like it does all its business much earlier than that.

I can adjust things like AC and ability scores at later timings, that is not the issue. What I am trying to do is do the template name change at a timing later than First/600.

I want to be able to do the something like:

perform state.thing[{Base Race's ID}].amendthing[name,{new name text}]

I am not sure is there a way to dynamically specify what needs to be entered into thing[] dynamically?

I am wondering if I will need to make a custom macro to handle this...
 
So you're trying to append some text to the name of the race?

Code:
perform hero.findchild[BaseFeat].setfocus

focus.field[livename].text &= "WHATEVER"
 
Back
Top