View Single Post
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old February 4th, 2020, 04:08 AM
Quote:
Originally Posted by draco963 View Post
How could I bootstrap a class special to a class level? That sounds like it might work, if I can use an evaluation script to see if class level >0 to trigger loading the bootsrap...
You could try using a Class Variant. Otherwise, you're potentially looking at re-creating the class (sorry, Class not Class Level) which doesn't always work smoothly.

Quote:
Originally Posted by draco963 View Post
I'll futz around with trying to build this as a regular special, see if it works for the way the ability, erm, works... I think the only real functionality lost would be the Ex-Member bit, which I can surely handle by hand.
Pretty sure you could script this. The idea would be to look for the field that indicates Ex-Member on the Class, and if it's not 0 adjust the tags that disables the special. For Example:

Code:
if (hero.child[cHelpClr].field[cExMember].value <> 0) then
   perform assign[Helper.SpcDisable]
   perform delete[Helper.ShowSpec]
endif
Not sure the timing off hand, but I suspect this field is set pretty early.

Last edited by Sendric; February 4th, 2020 at 04:10 AM.
Sendric is online now   #4 Reply With Quote