Advertisement
Guest User

Untitled

a guest
Jul 1st, 2022
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. -- Each database belongs to a line going in a specific direction. The ID is distance from the station. Append a 0 to each ID to allow for stations to be built in-between.
  2.  
  3. S = {
  4. stations = {
  5. 1 = { -- Copy this table with different numbers
  6. code = "Es", -- Letter code of the station
  7. name = "Example Station", -- Name of station
  8. side = "L", -- The side on which doors are to open
  9. rc = {"O"} -- This table contains Routing Codes that trains stop here with. Add == true please.
  10. }
  11. },
  12. global_config = {
  13. -- All these setting can be overriden by station-specific settings of the same name
  14.  
  15. delay = "3", -- Amount of time trains wait before leaving, which gives time to close doors and do some checks
  16. stoppingTime = "10", -- Amount of time trains wait at the station before closing the doors
  17. digilineChannel = "a," -- The channel to transmit digilines messages on
  18. maxSpeed = 18, -- The maximum speed at which it is safe to skip a station
  19. departureSpeed = 20, -- The speed at which trains depart a station
  20. skipDepartureSpeed = 20 -- The speed at which a skipping train leaves the station.
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement