Advertisement
MagmaLP

Rules

Mar 24th, 2023 (edited)
563
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. side = "top"
  2. mon = peripheral.wrap(side)
  3. mon.setTextScale(1.5)
  4. mon.setBackgroundColor(32768)
  5. mon.clear()
  6.  
  7. function calc_color(color)
  8.     return math.pow(2, color - 1)
  9. end
  10.  
  11. function msg(gap, line, color, groundb, text)
  12.     mon.setBackgroundColor(calc_color(groundb))
  13.     mon.setCursorPos(gap,line)
  14.     mon.setTextColor(calc_color(color))
  15.     text = mon.write(text)
  16. end  
  17.  
  18. msg(01,01,15,16,"Lycodon Tekkit 2 Rules")
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement