10 lines
303 B
Plaintext
10 lines
303 B
Plaintext
int StartingConditional()
|
|
{
|
|
string sName = GetLocalString(OBJECT_SELF, "Name");
|
|
string sLastName = GetLocalString(OBJECT_SELF, "LastName");
|
|
SetCustomToken(11001, sName);
|
|
SetCustomToken(11002, sLastName);
|
|
if (GetLocalInt(OBJECT_SELF, "Lost") == TRUE) return TRUE;
|
|
return FALSE;
|
|
}
|