Advertisement
Beechey12

Name Collector

Jun 11th, 2013
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | None | 0 0
  1. --Note to self check spelling before use
  2. local mon = peripheral.wrap("right")
  3. local NameCollection = {} -- Table for names
  4.  
  5. mon.clear()
  6. mon.setCursorPos(1,1)
  7. mon.write("Touch detector to input name.")
  8. local offset = 1
  9. local width, height = mon.getSize()
  10.  
  11. while true do
  12. event, playerName = os.pullEvent() -- get event
  13.   if event == "player" then
  14.   table.insert(NameCollection, playerName) -- insert names into table
  15.   mon.setCursorPos(1, #NameCollection + 1)
  16. for i = 1, math.min(#NameCollection, height - offset) do
  17.   mon.setCursorPos(1, i + offset)
  18.   mon.clearLine()
  19.   mon.write("Added " ..NameCollection[i + math.max(#NameCollection - height + offset, 0)]) -- print names in table
  20. end
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement