• 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

Duskwood Material Prereq.

Spyderbane

Well-known member
I'm trying to add duskwood and I am having issues with the prereq for armor. "must be breastplate"

Code:
    @valid = 0
     if (tagis[IsWeapon.w?] + tagis[mBreastpl] <> 0 ) then 
    @valid = 1
   endif

This works for weapon but I am having issues with the tag for breastplate.
 
I'm trying to add duskwood and I am having issues with the prereq for armor. "must be breastplate"

Code:
    @valid = 0
     if (tagis[IsWeapon.w?] + tagis[mBreastpl] <> 0 ) then 
    @valid = 1
   endif

This works for weapon but I am having issues with the tag for breastplate.

mBreaspl is an incomplete tag. Try:

tagis[thingid.mBreastpl]
 
Back
Top