9 lines
221 B
Plaintext
9 lines
221 B
Plaintext
//Instead of ACTUALLY having Dragon Shape, a henchman just ought to be level 40. Just a little cheat, I guess.
|
|
int StartingConditional()
|
|
{
|
|
if ( GetHitDice(OBJECT_SELF) < 40 )
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|