10 lines
167 B
Plaintext
10 lines
167 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
if (GetTag(OBJECT_SELF) == GetLocalString(GetPCSpeaker(),"Henchman"))
|
|
iResult = TRUE;
|
|
return iResult;
|
|
}
|