• 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

List of creatures?

TCArknight

Well-known member
Has anyone got an expression that will pull a list of available creatures in the dataset? I’ve tried Hero.Creature and source of All Things but the selector comes back with No Selections Found.

Suggestions welcome. :)
 
Actually, looking for the expression for a UserSelect usrCandid1 field. I’ll try the component,Creature when I get home… thank you!
 
Well, that's tricky, and it depends on that you're doing. Increases in a Creature's Size are usually done with a Racial Ability. So you're looking for the RaceAbil called abSize on the Creature and the field you're after is abilValue on that. That's where the size is before it's applied as a pick.
 
Hmmm..... that helped, but still running into a hiccup.

Effects/10000
Code:
doneif (field[usrChosen1].ischosen = 0)

var mySize as number

foreach bootstrap in field[usrChosen1].chosen where "thingid.abSize"
  mySize = eachthing.field[abilValue].value

  notify "Size of " & field[usrChosen1].chosen.field[name].text & " - " & mySize

  nexteach

It seems like no matter the timing, mySize always returns 0

Thoughts?
 
Have you tried setting mySize to a number, and checking to see if the 0 you're seeing is the default value and it just didn't find abilValue at all?
'
 
Back
Top