mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
22 lines
261 B
Plaintext
22 lines
261 B
Plaintext
include library.space_content;
|
|
|
|
trigger OnAttach()
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
trigger OnInitialize()
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
|
|
trigger OnDestroy()
|
|
{
|
|
if(hasObjVar(self, "objParent"))
|
|
{
|
|
space_content.notifySpawner(self);
|
|
}
|
|
|
|
return SCRIPT_CONTINUE;
|
|
} |