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