Shadowrun

Shadowrun General => General Discussion => Topic started by: Y-Err-Las on <09-21-17/0340:19>

Title: Adding home made Qualities in Chummer Support
Post by: Y-Err-Las on <09-21-17/0340:19>
So, I'm creating a character with some homemade qualities. Trying to get them into Chummer has been a challenge. I've found the file that has the qualities and I understand how the qualities are written. But when I after changing it open Chummer nothing has changed, please help :)
Title: Re: Adding home made Qualities in Chummer Support
Post by: SpellBinder on <09-21-17/1004:49>
Did you simply rewrite or add qualities to the original qualities.xml file, or did you make a custom_qualities.xml file?  Also, knowing which version will help, along with the code you're trying to use.
Title: Re: Adding home made Qualities in Chummer Support
Post by: Y-Err-Las on <09-21-17/1620:15>
Thanks for responding :D
I did simply try to rewrite the original yes, should I not do that? I kept the original so I could back to that no problem :)


Chummer 5a - Version 5.194.0

The code I tried to use is as followed:

<quality>
      <id>68cfe94a-fa7e-4129-a9b9-b5d73homeb01</id>
      <name>Hibernator(HACK)</name>
      <karma>-8</karma>
      <category>Negative</category>
      <bonus />
      <required>
        <oneof>
          <quality>Changeling (Class I SURGE)</quality>
          <quality>Changeling (Class II SURGE)</quality>
          <quality>Changeling (Class III SURGE)</quality>
        </oneof>
      </required>
      <source>HACK</source>
      <page>HACK</page>
      <metagenetic>yes</metagenetic>
    </quality>
Title: Re: Adding home made Qualities in Chummer Support
Post by: SpellBinder on <09-21-17/1723:47>
Two things:

1 - The GUID line is supposed to be hexadecimal, and you've added illegal characters.  This most likely will be the cause.  I do not know if a Base64 form is acceptable in Chummer5 or not; probably not.
2 - Do you have an entry for "HACK" in the books.html or a custom_books.html file?  If there is no such book enabled, then all such items that are <source>HACK</source> will never show.
Title: Re: Adding home made Qualities in Chummer Support
Post by: Y-Err-Las on <09-22-17/0206:55>
THANKS!!!!

changed the code to this and it works fine now :D

<quality>
      <id>03f40e73-a5ca-8a71-b0b4-829fcc33c529</id>
      <name>Hibernator(HACK)</name>
      <karma>-8</karma>
      <category>Negative</category>
      <bonus />
      <required>
        <oneof>
          <quality>Changeling (Class I SURGE)</quality>
          <quality>Changeling (Class II SURGE)</quality>
          <quality>Changeling (Class III SURGE)</quality>
        </oneof>
      </required>
      <metagenetic>yes</metagenetic>
      <source>SR5</source>
      <page>2</page>
    </quality>
Title: Re: Adding home made Qualities in Chummer Support
Post by: Pingacha on <09-22-17/2311:15>
How can I  do  this?