blob: 49a5e6b80474dc621f7f005edc62a0554a0d90e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
__approach_callback_mode = 1
if event.approach and not event.has_entered then
atc_set_lzb_tsr(2)
end
if event.train and atc_arrow then
local rc = get_rc() or ""
if rc:match("M27FUEL") and not rc:match("WOA_EXITLOOP") then
set_rc(rc.." WOA_SHUNT WOA_FUEL")
atc_send("B0WRD2S3")
end
if rc:match("WOA_EXITLOOP") then
atc_Send("SM")
end
end
|