16 lines
341 B
Plaintext
Raw Permalink Normal View History

int StartingConditional()
{
object oPC=GetPCSpeaker();
int nDisguised=0;
if (GetTag(GetItemInSlot(INVENTORY_SLOT_CHEST,oPC))=="jw_zhent_splint"||GetTag(GetItemInSlot(INVENTORY_SLOT_CHEST,oPC))=="jw_new_zh_robe"&&(GetGender(oPC)==GENDER_FEMALE))
{
nDisguised=1;
}
int iResult=nDisguised;
return iResult;
}