blob: 738d0c01181aba21e34e8fedcfe6b5db11892a77 (
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
26
27
|
-- far_luaatctrack_farcom_op_01.lua
if event.type == "punch" then
-- F.delete_train_info("298909")
digiline_send("time", " \nUPDATE")
S.datetime = os.date("%Y-%m-%d %H:%M:%S")
digiline_send("time", " \n " .. S.datetime)
F.list_trains(false)
-- local pos = POS(30919,13,1812)
-- interrupt_pos(pos, "display")
-- interrupt(1, "farcom_display")
return
end
--[[
if event.iid == "farcom_display" then
local pos = POS(30919,13,1812)
interrupt_pos(pos, "display")
interrupt(30, "farcom_display")
return
end
]]
|