• 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

Need help creating a Quality

Kesendeja

Well-known member
It's called Transhuman and is basically a copy of Type O System for cyberware, but I have no idea how to code it.
 
How far have you gotten - are you stuck on where the editor is so that you can start building the copy, or are you stuck on how to shift the script to alter cyberware instead of bioware?
 
I've got it entered in with cost and everything, but making it cooperate with the cyberware is driving me nuts.
 
Let's start with a copy of Type O System's script:

Code:
~if we're not active, just get out now
doneif (activated = 0)
~the way we'll implement this is to alter the essence cost multipliers
~of our bioware essence grade selectors - set them all to 0.5.
~note that this script happens before Biocompatability and Sensitive
~System - those are at Setup/4000.  That way, the multipliers are
~applied after we've set things equal to a specific value in this
~script.  It also occurs after the Chrome Critters optional rule
~applies its effects at Setup/2500 - this overrides that
foreach pick in hero from Grade where "Augment.Bio"
  eachpick.field[grEssMult].value = 0.5
  ~we also want to tell all our second-hand bioware that it's
  ~forbidden
  if (eachpick.tagis[GradeLevel.Second] <> 0) then
    perform eachpick.assign[Helper.InvalidGrd]
    endif
  nexteach

See the first line after all those comments - it ends in "Augment.Bio". You want yours to end in "Augment.Cyber".
 
Back
Top