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