16 lines
509 B
Plaintext
16 lines
509 B
Plaintext
////////////////////////////////////////////////////////////////////////////////
|
|
// plc_e_pathingobject - Pathing Object
|
|
// By Deva B. Winblood. April 7th, 2008
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
object oMe=OBJECT_SELF;
|
|
object oOwner=GetLocalObject(oMe,"oOwner");
|
|
object oDest=GetLocalObject(oOwner,"oShortPathDest");
|
|
if (!GetIsObjectValid(oOwner)||oDest!=oMe)
|
|
{ // self destruct
|
|
DestroyObject(oMe);
|
|
} // self destruct
|
|
}
|