TCArknight
Well-known member
Howdy!
I'm trying to bootstrap weapons to a hero based on choice on a Class Special.
I've bootstrapped all weapons chooseable, but I want only one to be visible. I'm trying to use a condiition on the Bootstrap, but I keep getting "Invalid tag template specified: 'tagcount[Custom.HasMBLt]' "
Code on Ability (right now just testing with one weapon):
Code on bootstrap condition:
What's missing?
Thanks!
TC
I'm trying to bootstrap weapons to a hero based on choice on a Class Special.
I've bootstrapped all weapons chooseable, but I want only one to be visible. I'm trying to use a condiition on the Bootstrap, but I keep getting "Invalid tag template specified: 'tagcount[Custom.HasMBLt]' "
Code on Ability (right now just testing with one weapon):
Code:
(First/1000)
~ Add chosen choices as Tags
var myChoice as string
if (field[usrChosen1].ischosen <> 0) then
myChoice = field[usrChosen1].chosen.idstring
debug myChoice
if (compare(myChoice,"wMndBldLt") = 0) then
perform hero.assign[Custom.HasMBLt]
endif
endif
Code:
(First/2000)
count:hero#tagcount[Custom.HasMBLt] >= 1
Thanks!
TC