11 lines
261 B
Plaintext
11 lines
261 B
Plaintext
|
// rts_default7
|
||
|
// modified 06/14/2004 Jeremy Greene
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oMe=OBJECT_SELF;
|
||
|
object oDeployed=GetLocalObject(oMe,"oDeployed");
|
||
|
if (oDeployed!=OBJECT_INVALID) DestroyObject(oDeployed);
|
||
|
ExecuteScript("rts_mon_death",OBJECT_SELF);
|
||
|
}
|