| Commit message (Expand) | Author | Age |
* | LuaATC: Fix position of error label, use consistent name "LuaATC" instead of ... | orwell96 | 2021-11-02 |
* | Hopefully fix #177 | orwell96 | 2021-04-25 |
* | LuaATC: add sending atc command to train by ID, and getters for in/out text (... | orwell96 | 2021-03-02 |
* | Restore LuaATC autocouple interface accidentally lost in 74a2199 | orwell96 | 2021-02-15 |
* | luaatc: Train event: also remember arrow connection in enter callback, remove... | orwell96 | 2021-02-10 |
* | luaatc: don't fail train event when train has already passed the rail at even... | orwell96 | 2021-02-10 |
* | Fix lots of things around new LZB | orwell96 | 2021-02-10 |
* | Disable ARS train flag and surrounding uses | orwell96 | 2021-02-10 |
* | Add approach callback mechanism to LuaATC | orwell96 | 2021-02-10 |
* | add maximum length parameter to split_at_fc and split_off_locomotive | Gabriel Pérez-Cerezo | 2020-08-21 |
* | Add command to split off locomotive | Gabriel Pérez-Cerezo | 2020-07-28 |
* | add train_length command to luaatc | Gabriel Pérez-Cerezo | 2020-07-27 |
* | Add function to step through freight codes | Gabriel Pérez-Cerezo | 2020-07-26 |
* | add split_train_at_fc luaatc command | Gabriel Pérez-Cerezo | 2020-07-26 |
* | Make using the default tracks optional, even in submods | Blockhead | 2020-07-10 |
* | fix typo in luaautomation | Gabriel Pérez-Cerezo | 2020-07-02 |
* | Add autocouple mode | Gabriel Pérez-Cerezo | 2020-06-29 |
* | document shunting mode, add unset_shunt to luaatc | Gabriel Pérez-Cerezo | 2020-06-08 |
* | Shunting mode now couples trains on collision. | Gabriel Pérez-Cerezo | 2019-08-11 |
* | Add decoupling to luaatc | Gabriel Pérez-Cerezo | 2019-08-11 |
* | Fix occurences of old lzb_invalidate | orwell96 | 2019-04-23 |
* | Force LZB Halt setting | orwell96 | 2019-02-05 |
* | Add getter/setter for routingcode in LuaATC | orwell96 | 2019-01-15 |
local ac = {nodes={}}
function ac.load(data)
if data then
ac.nodes=data.nodes
end
end
function ac.save()
return {nodes = ac.nodes}
end
function ac.after_place_node(pos, player)
local meta=minetest.get_meta(pos)
meta:set_string("formspec", ac.getform(pos, meta))
meta:set_string("infotext", "LuaATC component, unconfigured.")
local ph=minetest.pos_to_string(pos)
--just get first available key* | Remove zip release files, move mod to root, exclude assets from Makefile (#92) | rubenwardy | 2017-09-20 |