10 lines
265 B
Plaintext
10 lines
265 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
object oPC = GetLastUsedBy();
|
||
|
string sOwner = GetLocalString(OBJECT_SELF,"T1_OBJECT_GRAVEOWNER");
|
||
|
SetCustomToken(113,sOwner);
|
||
|
iResult = ((GetName(oPC) != sOwner) && (sOwner != ""));
|
||
|
return iResult;
|
||
|
}
|