Files
HeroesStone_PRC8/_module/nss/con_if_male.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

13 lines
204 B
Plaintext

/* Generic NPC Greeting for Menzoberranzan NPCs
By Zerak-Tul
*/
int StartingConditional()
{
// Add the gender restrictions
if(GetGender(GetPCSpeaker()) != GENDER_MALE)
return FALSE;
return TRUE;
}