11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName fr_hasnecklace
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
if (GetItemPossessedBy(oPC, "BirkanNecklace") == OBJECT_INVALID) return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|