Advertisement
JaMaNi133

SmelteryB

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