Advertisement
Guest User

blackboard

a guest
Dec 16th, 2012
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.33 KB | None | 0 0
  1. do
  2. mon = peripheral.wrap("right")
  3. mon.setCursorPos(1,0)
  4. mon.clear()
  5. print("Welcome to BlackBoard!")
  6. print("Type in anything and it will display on the monitor.")
  7. print("Have fun!")
  8. while true do
  9.  local input = read()
  10.  if input == "(:clearscreen" then
  11.   print("Clearing screen...")
  12.   sleep(1)
  13.   mon.clear()
  14.   mon.setCursorPos(1,0)
  15.  else
  16.   if input == "(:clearline" then
  17.    print("Clearing line...")
  18.    sleep(1)
  19.    mon.clearLine()
  20.    currx, curry = mon.getCursorPos()
  21.    mon.setCursorPos(1, curry - 1)
  22.   else
  23.    if input == "help" then
  24.     print("Tip: Type '(:' before a command for it to work.")
  25.     print("COMMANDS:")
  26.     print("clearline - clears the line you just typed.")
  27.     print("clearscreen - clears the whole screen.")
  28.     print("exit - exits BlackBoard.")
  29.    else
  30.     if input == "(:exit" then
  31.      print("Thank you for using BlackBoard!")
  32.      sleep(0.5)
  33.      mon.clear()
  34.      error()
  35.     else
  36.      if input == "(:scroll" then
  37.       mon.scroll(1)
  38.      else
  39.       if input == "colours" then
  40.        print("COLOUR TEXT:")
  41.        print("Tip: add 'CL:' before the name of a colour to make it work.")
  42.        print("After typing in your colour type in the text.")
  43.        print("COLOURS:")
  44.        print("red")
  45.        print("blue")
  46.        print("More to be added.")
  47.       else
  48.        if input == "colors" then
  49.         print("COLOR TEXT:")
  50.         print("Tip: add 'CL:' before the name of a color to make it work.")
  51.         print("After typing in your color type in the text.")
  52.         print("COLORS:")
  53.         print("red")
  54.         print("blue")
  55.         print("More to be added.")
  56.        else
  57.         if input == "CL:red" then
  58.          local input = read()
  59.          mon.setTextColor(16384)
  60.          currx, curry = mon.getCursorPos()
  61.          mon.setCursorPos(1, curry + 1)
  62.          mon.write(input)
  63.          mon.setTextColor(1)
  64.         else
  65.          if input == "CL:blue" then
  66.           local input = read()
  67.           mon.setTextColor(2048)
  68.           currx, curry = mon.getCursorPos()
  69.           mon.setCursorPos(1, curry + 1)
  70.           mon.write(input)
  71.           mon.setTextColor(1)
  72.          else
  73.           currx, curry = mon.getCursorPos()
  74.           mon.setCursorPos(1, curry + 1)
  75.           mon.write(input)
  76.          end
  77.         end
  78.        end
  79.       end
  80.      end
  81.     end
  82.    end
  83.   end
  84.  end
  85. end
  86. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement