mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-08-01 02:16:04 -04:00
26 lines
540 B
Plaintext
26 lines
540 B
Plaintext
/***** INCLUDES ********************************************************/
|
|
|
|
include library.firework;
|
|
|
|
/***** TRIGGERS ********************************************************/
|
|
|
|
trigger OnAttach()
|
|
{
|
|
messageTo(self, "handleCleanup", null, 60f, false);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
trigger OnDetach()
|
|
{
|
|
destroyObject(self);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
/***** HANDLERS ********************************************************/
|
|
|
|
messageHandler handleCleanup()
|
|
{
|
|
detachScript(self, firework.SCRIPT_FIREWORK_CLEANUP);
|
|
return SCRIPT_CONTINUE;
|
|
}
|