• 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

Selection.DragonDisc

Frodie

Well-known member
Is there a way to limit the choices to gold, bronze and silver on this selection?

component.SelectHelp & Selection.DragonDisc
 
I got: component.SelectHelp & Selection.DragonDisc & (BloodEner.Cold|BloodEner.Elec|BloodEner.Fire)
but I want to limit the choice down to gold, silver and bronze
 
Last edited:
I got: component.SelectHelp & Selection.DragonDisc & (BloodEner.Cold|BloodEner.Elec|BloodEner.Fire)
but I want to limit the choice down to gold, silver and bronze
Why not just use the Unique ID for the exact ones you want? Or use the SlotSet.? set of tags. These selector helper things are Picks on the hero so you can just view their tags:
Noname.jpg

Which gives you this then:
Code:
component.SelectHelp & (SlotSet.selDrBronz|SlotSet.selDrSilve|SlotSet.selDrGold)
 
Is there a expr-reqs that I can use selDrGold? I have tried:

tagis[SlotSet.selDrSilve] <> 0

and

tagis[thingid.selDrSilve] <> 0

but I don't think the hero is tagged with a selDrSilve]

never mind I found a work around, thanks anyways.
 
Last edited:
Back
Top