MagmaLP

Mall Neuer PC

Jan 15th, 2022 (edited)
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.59 KB | None | 0 0
  1. out = "mon"
  2. out = peripheral.wrap("right")
  3. out.setBackgroundColor(32768)
  4. out.clear()
  5.  
  6. function calc_color(color)
  7.     return math.pow(2, color - 1)
  8. end
  9.  
  10. function msg(gap, line, color, groundb, text)
  11.     out.setBackgroundColor(calc_color(groundb))
  12.     out.setCursorPos(gap,line)
  13.     out.setTextColor(calc_color(color))
  14.     text = out.write(text)
  15. end  
  16.  
  17. msg(06,02,02,16,"Welcome to")
  18. msg(12,03,02,16,"MagmaLPs Shop")
  19. msg(01,06,05,16,"Available on request:")
  20. msg(01,07,01,16,"- 100k Scrap Boxes")       msg(23,07,06,16,"2000$")
  21. msg(01,08,01,16,"- 1 Mio Leaves")           msg(23,08,06,16,"2000$")
  22.  
  23.  
Add Comment
Please, Sign In to add comment