Advertisement
JaMaNi133

SmelteryA

Oct 31st, 2023 (edited)
521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.02 KB | None | 0 0
  1. --pastebin get p4vgmwSb SMELTER/SmelteryA.lua
  2. smelteryA = {
  3.     DisplayName = "Smeltery A",
  4.     BusA = {
  5.         state = "PumpOff",
  6.         Port1 = {
  7.             color = colors.white,
  8.             computer=7,
  9.             invert=false
  10.         },
  11.         Port2 = {
  12.             color=colors.pink,
  13.             computer=7,
  14.             invert=false
  15.         },
  16.     },
  17.    
  18.    
  19.     BusB = {
  20.         state = "PumpOff",
  21.         Port1 = {
  22.             color = colors.blue,
  23.             computer=7,
  24.             invert=false
  25.         },
  26.         Port2 = {
  27.             color=colors.yellow,
  28.             computer=7,
  29.             invert=false
  30.         },
  31.     },
  32.    
  33.    
  34.     BusC = {
  35.         state = "PumpOff",
  36.         Port1 = {
  37.             color = colors.red,
  38.             computer=7,
  39.             invert=false
  40.         },
  41.         Port2 = {
  42.             color=colors.orange,
  43.             computer=7,
  44.             invert=false
  45.         },
  46.     },
  47.     Observer = nil,
  48.     Content = {},
  49.     Data = {},
  50.     Enabled = false
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement