diff options
Diffstat (limited to 'durt/nodes/(-1442,11,-2568).lua')
-rw-r--r-- | durt/nodes/(-1442,11,-2568).lua | 42 |
1 files changed, 25 insertions, 17 deletions
diff --git a/durt/nodes/(-1442,11,-2568).lua b/durt/nodes/(-1442,11,-2568).lua index 6888f6b..5346db1 100644 --- a/durt/nodes/(-1442,11,-2568).lua +++ b/durt/nodes/(-1442,11,-2568).lua @@ -1,17 +1,25 @@ -local ind = POS(-1444,10,-2546) -if event.train and atc_arrow then - if not F.has_rc("S27_SHUNTER") then - step_fc() - split_off_locomotive("BBA0") - F.add_rc("S27_REV_West S27_EXP_WAIT S27_EXP_COLLECT") - F.indicator(ind,true) - return - end - unset_autocouple() - atc_send("A0BB") - if train_length() > 2 then -- if length > 2 it would try to discouple the nose - split_at_index(train_length()-1,"BBWRD2S3A1") - return - end - atc_send("BBWRD2S3A1") -end
\ No newline at end of file +--S27 Export Arrivals +if not atc_arrow then return end +if not F.has_rc("S27_SHUNTER") then return end +if train_length() == 1 then --return loco to storage via N headshunt (backwards) + F.add_rc({ + "S27_EXP_LOCOSTORE", + "S27_EXP_HS_N", + }) + atc_send("S0WD3RS3") + return +end +if not F.has_rc("S27_EXPORT_ACTIVE") then --train has just arrived. run around + split_off_locomotive("A0B0",1) + F.add_rc({ + "S27_EXPORT_ACTIVE", + "S27_EXP_HS_S", + "S27_EXP_AROUND", + "S27_EXP_HS_N", + "S27_EXP_HS_N_AC", + "S27_EXP_DIR_ARRIVALS" + }) + return +end +F.remove_rc("S27_EXP_AROUND") +atc_send("S0WD3RS1") --bounce the train
\ No newline at end of file |