Advertisement
BillBodkin

#railwayServerSignals

Mar 5th, 2023 (edited)
473
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. {
  2.     ["E2"] = {
  3.         ["x"] = 0,
  4.         ["z"] = 0,
  5.         ["signalsFromThis"] = {
  6.             "E1"
  7.         },
  8.         ["destinationOnly"] = false
  9.     },
  10.     ["E1"] = {
  11.         ["x"] = 0,
  12.         ["z"] = 0,
  13.         ["signalsFromThis"] = {
  14.             "W1"
  15.         },
  16.         ["destinationOnly"] = false
  17.     },
  18.     ["W1"] = {
  19.         ["x"] = 0,
  20.         ["z"] = 0,
  21.         ["signalsFromThis"] = {
  22.             "W2"
  23.         },
  24.         ["destinationOnly"] = false
  25.     },
  26.     ["W2"] = {
  27.         ["x"] = 0,
  28.         ["z"] = 0,
  29.         ["signalsFromThis"] = {
  30.             "E2"
  31.         },
  32.         ["destinationOnly"] = false
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement