I am trying to implement a class special that bootstraps a minion. The problem is that when I load the class the minion is boostrapped even though the class special that bootstraps occurs at a later level.
I figured I could put a condition on the race of the minion being bootstraped via something like this:
Code in the class:
	
	
	
		
then on the minion race have the following condition
Code in racial special:
	
	
	
		
However this is not working. ideas?
				
			I figured I could put a condition on the race of the minion being bootstraped via something like this:
Code in the class:
		Code:
	
	First/40
if (hero.childfound[IDofCLASSSpecial].tagis[Helper.SpcDisable] <> 0) then
 perform hero.assign[Custom.BootMin]
endif
	then on the minion race have the following condition
Code in racial special:
		Code:
	
	First/45
hero#Custom.BootMin
	However this is not working. ideas?