2008-08-08 22:52:04 +00:00
|
|
|
|
|
|
|
ACTOR SectorAction native
|
|
|
|
{
|
|
|
|
+NOBLOCKMAP
|
|
|
|
+NOSECTOR
|
|
|
|
+NOGRAVITY
|
|
|
|
+DONTSPLASH
|
|
|
|
}
|
|
|
|
|
|
|
|
// Triggered when entering sector -------------------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
ACTOR SecActEnter : SectorAction native
|
2008-08-08 22:52:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Triggered when leaving sector --------------------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
ACTOR SecActExit : SectorAction native
|
2008-08-08 22:52:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Triggered when hitting sector's floor ------------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
ACTOR SecActHitFloor : SectorAction native
|
2008-08-08 22:52:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Triggered when hitting sector's ceiling ----------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
ACTOR SecActHitCeil : SectorAction native
|
2008-08-08 22:52:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Triggered when using inside sector ---------------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
ACTOR SecActUse : SectorAction native
|
2008-08-08 22:52:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Triggered when using a sector's wall -------------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
ACTOR SecActUseWall : SectorAction native
|
2008-08-08 22:52:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Triggered when eyes go below fake floor ----------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
ACTOR SecActEyesDive : SectorAction native
|
2008-08-08 22:52:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Triggered when eyes go above fake floor ----------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
ACTOR SecActEyesSurface : SectorAction native
|
2008-08-08 22:52:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Triggered when eyes go below fake floor ----------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
ACTOR SecActEyesBelowC : SectorAction native
|
2008-08-08 22:52:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Triggered when eyes go above fake floor ----------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
ACTOR SecActEyesAboveC : SectorAction native
|
2008-08-08 22:52:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Triggered when eyes go below fake floor ----------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
ACTOR SecActHitFakeFloor : SectorAction native
|
2008-08-08 22:52:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-06-13 08:47:38 +00:00
|
|
|
// Music changer ----------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
ACTOR MusicChanger : SectorAction native
|
2010-06-13 08:47:38 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|