Well, they seem to get along. To a point.
I have a trigger_multiple that triggers a target_script_trigger
I’m sure of the triggering occuring because the debug in the console says it does.
But, apparently the script_movers don’t like the command.
gate_up_1
{
spawn
{
wait 200
gotomarker pth_up_1_up 5000 wait
accum 0 set 1
}
trigger down
{
accum 0 abort_if_equal 0
accum 0 set 0
gotomarker pth_up_1_dn 5000 wait
// trigger self up
}
trigger up
{
gotomarker pth_up_1_up 25 wait
accum 0 set 1
}
}
I’ve commented the up part for a bit, but in the spawn, when I switch the _up tag at the end to the _dn tag (my other path_corner) it starts on the bottom, as it should.
The problem is, when it triggers, the gate (when starting at pth_up_1_up) doesn’t drop down. Any suggestions?


