23 lines
621 B
Plaintext
23 lines
621 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName ke_if_baroness
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 02-07-2007 20:46:26
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the gender restrictions
|
|
if(GetGender(GetPCSpeaker()) != GENDER_FEMALE)
|
|
return FALSE;
|
|
|
|
// Make sure the PC speaker has these items in their inventory
|
|
if(!HasItem(GetPCSpeaker(), "stat_token_9"))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|