blob: 2a6743101699d20532bf4639e425c88e85b46789 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
if event.type=="digiline" then
if event.channel ~= "trainctl" then return end
if not atc_id then return end
local cmd = "I+S0WR;S3"
if event.msg == "send" then
atc_send(cmd)
return
end
if event.msg == "send_cpl" then
atc_send(cmd.."CplS0WRS3")
return
end
end
|