View Single Post
TCArknight
Senior Member
 
Join Date: Jan 2007
Location: NW Arkansas
Posts: 1,321

Old October 22nd, 2009, 05:47 PM
2 Questions:

1) I have an ability thing called Skilled which has two usrChosen selections with ChooseSrc1 and ChooseSrc2.
Code:
<thing
  id="abSkilled"
  name="Skilled"
  compset="RaceAbil"
  isunique="yes"
  description="Description goes here">
  <fieldval field="usrCandid1" value="component.Skill"/>
  <fieldval field="usrCandid2" value="component.Skill"/>
  <tag group="Hide" tag="Ability"/>
  <tag group="Hide" tag="RaceAbil"/>
  <tag group="ChooseSrc1" tag="Hero"/>
  <tag group="ChooseSrc2" tag="Hero"/>
      <eval value="1" phase="Final" priority="4000">
      <![CDATA[
      
      if (field[usrChosen1].ischosen <> 0) then

        field[usrChosen1].chosen.field[trtFinal].value += 1
        
        endif

      if (field[usrChosen2].ischosen <> 0) then
        
        field[usrChosen2].chosen.field[trtFinal].value += 1

        endif
      ]]></eval>
  </thing>
This ability on the summary page shows up as

Skilled: ChooseSrc1, ChooseSrc2

If the same choice is made for both, then it displays

Skilled: MyChoice, MyChoice

Is there a way to get that to display just

Skilled: MyChoice (+2) ?

2) I want to let a Skill have an indicator that displays if there is a specialty selected for a skill. The skill should have a way to select additional specialties, the number of which are limited only by points remaining to spend on skills. Or possibly adds a new line under the skill with a chooser of appropriate specialties.

How do I set something like that up?

Last edited by TCArknight; October 22nd, 2009 at 06:13 PM.
TCArknight is offline   #31 Reply With Quote