Advertisement
JustDoesGames

SC3 Road Signs

May 16th, 2024
670
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. b = require("bigfont")
  2.  
  3. -- char 16 points RIGHT and 17 points LEFT
  4. local text = string.char(17).." North"
  5.  
  6. local sign = peripheral.find("monitor")
  7.  
  8. w,h = sign.getSize()
  9. print(w.."| "..h)
  10.  
  11. sign.setBackgroundColor(colors.cyan)
  12. sign.clear()
  13.  
  14. sleep(.5)
  15. b.writeOn(sign, 1, text, (w/3)-(text:len()/2),2)
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement