• 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

Pushme-Pullyou

frumple

Well-known member
I want to copy a tag from one thing (thing1) to another (thing2).

Now I know I can do this by the following
hero.child[thing1].pulltags[tag template]
hero.child[thing2].pushtags[tag template]

I was wondering if there was a way to do this directly instead of having to pull tags to the hero and then pushing them.
 
You're not pulling tags to the hero in that script, you're pulling the tags from thing 1 to the thing which is running the script (whatever it is), and then you're pushing those tags from the thing running the script to thing2.

The simplest answer is to have thing2 pull the tags directly from thing1, but if you don't have access to the eval scripts for thing2, then using the intermediary as you do above is the best option.
 
Ah. Got it.

Yeah this is for assigning the damage of a natural attack to an ability or another natural attack so the intermediary is needed.
 
Back
Top