Added (2) Castle Interior overrides, continued making static NPCs & stores dynamic. added more DMFI language tokens, started working on mod onEnter scripting, got NPCs to fire emotes while walking around.
21 lines
447 B
Plaintext
21 lines
447 B
Plaintext
//:://////////////////////////////////////////////
|
|
//:: FileName cv_is_sexless
|
|
//:://////////////////////////////////////////////
|
|
//::
|
|
//:: Returns if speaker is "other" in regards to
|
|
//:: gender.
|
|
//::
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the gender restrictions
|
|
if(GetGender(GetPCSpeaker()) != GENDER_OTHER)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|