diff options
-rw-r--r-- | mesecons.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mesecons.lua b/mesecons.lua index fd3ec68..8c79224 100644 --- a/mesecons.lua +++ b/mesecons.lua @@ -139,6 +139,22 @@ local outputoptions = { needsfloor = false, }, { + id = "collectorup", + desc = "Collecting Up Calls", + func = function(mem) + return (mem.carstate == "normal" and mem.direction == "up") + end, + needsfloor = false, + }, + { + id = "collectordown", + desc = "Collecting Down Calls", + func = function(mem) + return (mem.carstate == "normal" and mem.direction == "down") + end, + needsfloor = false, + }, + { id = "lightsw", desc = "Car Light Switch", func = function(mem) |