Advertisement
jonnathonchristopher

Server config

Dec 3rd, 2013
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.00 KB | None | 0 0
  1. --[[
  2.  
  3. Rail Cart elevator monitor By Jonnathon Clayton (AKA THC Butterz) V2.0.0
  4. Note: For a great comptercraft controlled elevator check out Ominous Penguin's tutorial here:  
  5. https://www.youtube.com/watch?v=OiMmMBS5e_s#t=756
  6.  
  7. Special Thanks and Credit:
  8. Credit to ben657 for his config file API
  9. Special thanks to Ominous Penguin for tips and coding advice.
  10.  
  11. -- Maximum of 16 floors, floors must have unique color wire
  12. -- Floors must be wired in color order per Color API
  13. -- Refer to the Color API here:  http://computercraft.info/wiki/Colors_%28API%29
  14. -- floor 1 = white, floor 2 = orange, floor 16 = black etc...
  15.  
  16. --]]
  17.  
  18. floors = nil
  19. bcol = nil
  20. tcol = nil
  21. scal = nil
  22. f1 = nil
  23. f2 = nil
  24. f3 = nil
  25. f4 = nil
  26. f5 = nil
  27. f6 = nil
  28. f7 = nil
  29. f8 = nil
  30. f9 = nil
  31. f10 = nil
  32. f11 = nil
  33. f12 = nil
  34. f13 = nil
  35. f14 = nil
  36. f15 = nil
  37. f16 = nil
  38. m1 = nil
  39. m2 = nil
  40. m3 = nil
  41. m4 = nil
  42. m5 = nil
  43. m6 = nil
  44. m7 = nil
  45. m8 = nil
  46. m9 = nil
  47. m10 = nil
  48. m11 = nil
  49. m12 = nil
  50. m13 = nil
  51. m14 = nil
  52. m15 = nil
  53. m16 = nil
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement