16 lines
393 B
Plaintext
16 lines
393 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
string sAssignedBy = GetLocalString(oPC, "RTG_AssignedByTag");
|
|
|
|
if(sAssignedBy != "" && sAssignedBy != GetTag(OBJECT_SELF))
|
|
{
|
|
SetCustomToken(3373, GetName(GetObjectByTag(sAssignedBy)));
|
|
SetCustomToken(3374, GetName(GetArea(GetObjectByTag(sAssignedBy))));
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|