HiddenTradition_PRC8/_module/nss/h9c_meph_male.nss

25 lines
603 B
Plaintext
Raw Permalink Normal View History

//::///////////////////////////////////////////////
//:: Mephistopheles, Male PC (Condition Script)
//:: H9c_Meph_Male.nss
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Returns TRUE if the PC is male.
*/
//:://////////////////////////////////////////////
//:: Created By: Rob Bartel
//:: Created On: September 10, 2003
//:://////////////////////////////////////////////
int StartingConditional()
{
object oPC = GetPCSpeaker();
int iGender = GetGender(oPC);
if (iGender == GENDER_MALE)
{
return TRUE;
}
return FALSE;
}