• 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

Help with Bio-Compatibility

DrunkZombie

Well-known member
Can anyone think of a way to impliment Bio-Compatibility? I don't know if there is a way with the current available methods to let someone choose Bio or Cyber and reduce their used essense by 10%. For now I think I will have to manually correct it on the sheet with a pencil.
 
Check the sensitive system quality - that's another thing that's altering the essence cost of a category of augmentations.
 
Sweet. Got it working.

I didn't want to mess with trying to make cyber or bio selectable, so I just made two versions. One for cyber and one for bio. I copied Sensitive System and changed the script, cost, etc...


~if we're not active, just get out now
doneif (activated = 0)

~find all of our Cyberware Implant Grade helpers and double their essence costs
foreach pick in hero from Grade where "Augment.Cyber"
eachpick.field[grEssMult].value *= .9
nexteach


and


~if we're not active, just get out now
doneif (activated = 0)

~find all of our Cyberware Implant Grade helpers and double their essence costs
foreach pick in hero from Grade where "Augment.Bio"
eachpick.field[grEssMult].value *= .9
nexteach
 
Back
Top