NEWS

Adding home made Qualities in Chummer Support

  • 5 Replies
  • 1993 Views

Y-Err-Las

  • *
  • Newb
  • *
  • Posts: 3
« 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 :)

SpellBinder

  • *
  • Omae
  • ***
  • Posts: 348
« Reply #1 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.

Y-Err-Las

  • *
  • Newb
  • *
  • Posts: 3
« Reply #2 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>

SpellBinder

  • *
  • Omae
  • ***
  • Posts: 348
« Reply #3 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.

Y-Err-Las

  • *
  • Newb
  • *
  • Posts: 3
« Reply #4 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>

Pingacha

  • *
  • Newb
  • *
  • Posts: 1
« Reply #5 on: <09-22-17/2311:15> »
How can I  do  this?