aboutsummaryrefslogtreecommitdiff
path: root/assets/manual/station.lua
blob: fae752581b864c85061bfce01c7acd4845337e1c (plain)
1
2
3
4
5
6
7
8
9
10
11
function F.station(station_name)
	if event.train then
		atc_send("B0WOL")
		atc_set_text_inside(station_name)
		interrupt(10, "depart")
	end
	if event.int and event.message == "depart" then
		atc_set_text_inside("")
		atc_send("OCD1SM")
	end
end