Advertisement
daliena

RunBannedItems

Nov 23rd, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. m = peripheral.wrap("top")
  2. m.setBackgroundColor(colors.gray) --background color
  3. m.setTextScale(1)
  4. m.setTextColor(colors.lime)
  5.  
  6. function h(text)
  7.   w, h = m.getSize()
  8.   m.setCursorPos((w-string.len(text))/2+1, 2)
  9.   m.write(text)
  10. end
  11. m.clear()
  12.  
  13. h("Banned Items") --heading
  14. i = 3
  15. m.setCursorPos(1,3)
  16. function t(text)
  17.   i = i+1
  18.   m.setCursorPos(1, i)
  19.   m.write(text)
  20. end
  21. shell.run("clear")
  22. shell.run("BannedItems") --file directory
  23.  
  24. -- Made By H3Y_GO_OUTSID3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement