Official ICE Forums

Systems & Settings => HARP => HARP Software => Topic started by: Chris Seal on April 02, 2014, 05:19:00 AM

Title: AutoHARP - custom database, limited choice for cultural ranks
Post by: Chris Seal on April 02, 2014, 05:19:00 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
Title: Re: AutoHARP - custom database, limited choice for cultural ranks
Post by: dagorhir 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>
Title: Re: AutoHARP - custom database, limited choice for cultural ranks
Post by: Chris Seal on April 02, 2014, 06:19:04 AM
Thanks dagorhir.

Much appreciated

Cheers
Chris
Title: Re: AutoHARP - custom database, limited choice for cultural ranks
Post by: DavidKlecker on April 02, 2014, 07:12:13 PM
 8)