15 lines
202 B
Plaintext
15 lines
202 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
string sTag;
|
|
|
|
sTag = GetLocalString(GetPCSpeaker(),"QuestTargetNPC");
|
|
|
|
|
|
iResult = FALSE;
|
|
if(sTag == "en3_erolle")
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|