PGCC_PRC8/_module/nss/vat_pheno.nss

19 lines
390 B
Plaintext
Raw Normal View History

2024-10-09 14:17:22 -04:00
////////////////////////////////////
// Called from a conversation.
////////////////////////////////////
void main()
{
object oPerson = GetPCSpeaker();
int sChunky = GetPhenoType(oPerson);
if (sChunky == PHENOTYPE_BIG)
{
SetPhenoType(PHENOTYPE_NORMAL, oPerson);
}
else
{
SetPhenoType(PHENOTYPE_BIG, oPerson);
}
}
///////////////////////////////////