18 lines
290 B
Plaintext
Raw Normal View History

int StartingConditional()
{
string sTagMe;
object oPC;
int iFirstQuest;
int iResult;
oPC = GetPCSpeaker();
sTagMe = GetTag(OBJECT_SELF);
iFirstQuest = GetLocalInt(oPC,"FirstQuest");
iResult = FALSE;
if (iFirstQuest == 0 && sTagMe == "en3_berister")
iResult = TRUE;
return iResult;
}