17 lines
206 B
Plaintext
17 lines
206 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC;
|
|
int iResult;
|
|
string sTag;
|
|
|
|
oPC = GetPCSpeaker();
|
|
sTag = GetLocalString(oPC,"QuestItemTag");
|
|
|
|
iResult = FALSE;
|
|
if (sTag != "")
|
|
iResult = TRUE;
|
|
|
|
|
|
return iResult;
|
|
}
|