Ancordia_PRC8/_module/nss/has_dragonshape.nss

9 lines
221 B
Plaintext
Raw Normal View History

2023-09-21 19:51:32 -04:00
//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;
}