13 lines
402 B
Plaintext
13 lines
402 B
Plaintext
int StartingConditional()
|
|
{
|
|
if (GetLocalInt(OBJECT_SELF, "LostQuest") == TRUE && GetPCSpeaker() == GetLocalObject(OBJECT_SELF, "oPC"))
|
|
{
|
|
string sName = GetLocalString(OBJECT_SELF, "sName");
|
|
string sLastName = GetLocalString(OBJECT_SELF, "sLastName");
|
|
SetCustomToken(11001, sName);
|
|
SetCustomToken(11002, sLastName);
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|