• 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

Racial feat

Manalishi66

Well-known member
Hi.. I got a race that has blindsense. It's scripted as follows.

call CalcValue

~ Use our value field as blindsight distance
field[livename].text = field[name].text & " (" & field[abValue].value & " feet)"

It works fine, but what I need help with, and have never done before, is have a racial feat which extends the range of the blindsense by 5 feet per point of Wisdom modifier. Can some one show me how this is done.

Thanks!
 
You need to add to the abValue so something like

Final/15000

Code:
doneif (tagis[Helper.FtDisable] <> 0)
field[abValue].value += 5 * #attrbonus[aWIS]
#value[rBlindsen] += field[abValue].value
 
Last edited:
Having a problem with the script you gave me. It says there is an "Error in right-side expression of assignment" on line 3?

What did I do?
 
Having a problem with the script you gave me. It says there is an "Error in right-side expression of assignment" on line 3?

What did I do?
Looking at you can see he is missing a [ as he is trying to access field "abValue" not fieldabvalue.

Code:
doneif (tagis[Helper.FtDisable] <> 0)
field[abValue].value += 5 * #attrbonus[aWIS]
#value[rBlindsen] += field[abValue].value

Also this code needs you to bootstrap "rBlindsen" to your Thing.

Actually Andrew I think their is a xBlindsen actually that gives a generic blindsense ability???
 
Back
Top