I’ve read several tutorials, and I’ve gone over this a thousand times and can’t find the problem…
It’s frustrating me so much I spent the time to make a photo montage to display all my entries in the hopes someone here can help…
It’s meant to be a lift that goes from the main hangar area to an underground bunker area. Basically, nothing happens when I hit the button…
The brush that is meant to go up and down…

The trigger…

The origin and path_corner (with the lift hidden)… path_corner’s targetname is lift_up_point.

The destination path_corner…

and the relevant section of my script…
move_lift
{
trigger move_lift_down
{
// call trigger to move lift down
trigger lift move_to_basement
}
trigger move_lift_up
{
// call trigger to move lift up
trigger lift move_to_hangar
}
}
// hangar lift function
lift
{
trigger move_to_basement
{
gotomarker lift_down_point 32
}
trigger move_to_hangar
{
gotomarker lift_up_point 32
}
}
I know it’s probably something incredibly stupid…

