• 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

Final Script for Move by Wire

DrunkZombie

Well-known member
Here is the final scripting for Move by Wire

Phase: Traits Priority: 5000

Timing After Calc grRating, Before Calc trtFinal #2

~only proceed if we're not disabled
doneif (activated = 0)

~+Rating to REA and Initiative Passes
perform #traitaugment[attrRea,+,field[grRating].value*2,""]
perform #traitaugment[attrPass,+,field[grRating].value,""]

perform hero.childfound[skaDodge].field[trtAugment].modify[+,field[grRating].value,""]

var skillwire as number
if (field[grRating].value = 3) then
skillwire = 5
else
skillwire = 2 * field[grRating].value
endif
~record 2x rating on the hero's activesoft limit
perform herofield[acActSLim].modify[+,2 * skillwire,""]
~and the rating as the max for any one activesoft
perform herofield[acActSMax].modify[+, skillwire ,""]
 
Last edited:
Back
Top