Author Topic: AutoHARP - custom database, limited choice for cultural ranks  (Read 2359 times)

0 Members and 1 Guest are viewing this topic.

Offline Chris Seal

  • Neophyte
  • *
  • Posts: 65
  • OIC Points +200/-200
Hi there,

I've started adding my custom cultures to AutoHARP (very useful piece of software thank you) and have a situation where I would like to offer the characters a selection of cultural languages, without offering all the languages in the realm. Is this possible to do and if so could you please help me to implement such?

Thanking you in anticipation.

Cheers
Chris

Offline dagorhir

  • Senior Adept
  • **
  • Posts: 571
  • OIC Points +0/-0
Re: AutoHARP - custom database, limited choice for cultural ranks
« Reply #1 on: April 02, 2014, 06:03:55 AM »
Hi there,

I've started adding my custom cultures to AutoHARP (very useful piece of software thank you) and have a situation where I would like to offer the characters a selection of cultural languages, without offering all the languages in the realm. Is this possible to do and if so could you please help me to implement such?

Thanking you in anticipation.

Cheers
Chris

Yes it is quite possible. The following code block shows how I give a choice of several Linguistics skills in which 10 ranks may be distributed:

Code: [Select]
        <Skills type="AdolescenceRanks">
            <Ranks>10</Ranks>
<Label></Label>
<Skill>
            <CategoryName>General</CategoryName>
            <SkillName>Linguistics</SkillName>
<SubSkillName>Kordw</SubSkillName>
        </Skill>
<Skill>
            <CategoryName>General</CategoryName>
            <SkillName>Linguistics</SkillName>
<SubSkillName>Eradael</SubSkillName>
        </Skill>
<Skill>
            <CategoryName>General</CategoryName>
            <SkillName>Linguistics</SkillName>
<SubSkillName>Andael</SubSkillName>
        </Skill>
<Skill>
            <CategoryName>General</CategoryName>
            <SkillName>Linguistics</SkillName>
<SubSkillName>Common Valarhael</SubSkillName>
        </Skill>
<Skill>
            <CategoryName>General</CategoryName>
            <SkillName>Linguistics</SkillName>
<SubSkillName>High Valarhael</SubSkillName>
        </Skill>
<Skill>
            <CategoryName>General</CategoryName>
            <SkillName>Linguistics</SkillName>
<SubSkillName>Valarhaic</SubSkillName>
        </Skill>
<Skill>
            <CategoryName>General</CategoryName>
            <SkillName>Linguistics</SkillName>
<SubSkillName>Cunik</SubSkillName>
        </Skill>
        </Skills>

Offline Chris Seal

  • Neophyte
  • *
  • Posts: 65
  • OIC Points +200/-200
Re: AutoHARP - custom database, limited choice for cultural ranks
« Reply #2 on: April 02, 2014, 06:19:04 AM »
Thanks dagorhir.

Much appreciated

Cheers
Chris

Offline DavidKlecker

  • Senior Adept
  • **
  • Posts: 698
  • OIC Points +0/-0
  • Everything is coming up Milhouse!
Re: AutoHARP - custom database, limited choice for cultural ranks
« Reply #3 on: April 02, 2014, 07:12:13 PM »
 8)