18 lines
290 B
Plaintext
18 lines
290 B
Plaintext
|
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;
|
||
|
}
|