• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Choosing a "thing" on an agent tab?

TCArknight

Well-known member
Howdy!

I am working on a system where certain abilities have 0 or more "Concentration" components associated with them (in gizmos).

a) Ability 1 might have A, B, C concentrations, and Ability 2 might have D, E concentrations.

b) The character selects a Background, which is component="Background" and includes the UserSelect component as part of the Background compset.

c) Each background provides the hero with a choice of a Concentration from several.
- Background B would provide either the Concentration B or Concentration E.

Each background uses an agent tab with:
Code:
<panel
    id="backgrounddetail"
    name="Background Details"
    marginhorz="5"
    marginvert="5"
    order="30"
    agentcompset="Background"
    agentlive="HasBackground"
    agentname="name"
    >

The selected Background has:
Code:
    <fieldval field="usrLabel1" value="Conc.:"/>
    <fieldval field="usrCandid1" value="component.Concentration & (thingid.concOccult|thingid.concTheology)"/>
    <fieldval field="usrSource1" value="2"/>

the menu portal is:
Code:
    <portal
      id="menu1"
      style="menuNormal">
      <menu_things
        field="usrChosen1"
		namefield="name"
        component="none"
        maxvisible="10"
        usepicksfield="usrSource1"
        candidatefield="usrCandid1">
        </menu_things>
      </portal>

However, no matter what value I have for usrSource1 (0, 1 or 2), menu1 shows "Nothing to choose from". Only if I manually add Occult or Theology concentration to the Ability, will it then show up in the menu. :(

An I missing something to be able to choose one of the Concentrations and have it add to the associated Ability?
 
Check my post from this morning, maybe it answers. If not I'll try to look at it tomorrow. I'm out of pocket (not with computer access) the rest of today and early tomorrow.
 
Back
Top