summaryrefslogtreecommitdiff
path: root/far/nodes/(30848,15,1852).lua
blob: e55e17b521f51e4f907b808eec33287351ef4c7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
-- far_luaatctrack_spot_check_01.lua

if event.type == "train" then
  local posTable = POS(30848,15,1852)
  F.save_train(posTable)
  digiline_send("display", "update")
  return
end

if event.type == "ext_int" then
  if event.message == "display" then
    interrupt(30,"update_display")
  end
  return
end


if event.type == "int" then
  if event.msg == "update_display" then
    if S.stop_display == true then return end
    digiline_send("display", "update")
    interrupt(60,"update_display")
  end
  return
end