9 lines
213 B
Plaintext
9 lines
213 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oPC = GetLastUsedBy();
|
|
string sOwner = GetLocalString(OBJECT_SELF,"T1_OBJECT_GRAVEOWNER");
|
|
iResult = (GetName(oPC) == sOwner);
|
|
return iResult;
|
|
}
|