generated from Jaysyn/ModuleTemplate
Initial Commit
Initial Commit.
This commit is contained in:
14
_module/nss/con_if_female.nss
Normal file
14
_module/nss/con_if_female.nss
Normal file
@@ -0,0 +1,14 @@
|
||||
/* Generic NPC Greeting for Menzoberranzan NPCs
|
||||
By Zerak-Tul
|
||||
*/
|
||||
int StartingConditional()
|
||||
{
|
||||
object oPC = GetPCSpeaker();
|
||||
|
||||
if (GetGender(oPC) != GENDER_FEMALE) return FALSE;
|
||||
|
||||
if ((GetLevelByClass(CLASS_TYPE_CLERIC, oPC)==0))
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
Reference in New Issue
Block a user