Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- m = peripheral.wrap("back")
- m.clear()
- m.setCursorPos(1,1)
- m.setTextScale(2)
- local function centerText(text)
- x,y = m.getSize()
- x1,y1 = m.getCursorPos()
- m.setCursorPos((math.floor(x/2) - (math.floor(#text/2))), y1)
- m.write(text)
- end
- --Call function "centerText("")" to set text
- --Use m.setCursorPos(1,y) to choose placement on screen
- y2 = 2
- m.setCursorPos(1, y2)
- centerText("SERVE RULES")
- m.setCursorPos(1, y2 + 2)
- centerText("---------")
- m.setCursorPos(1, y2 + 4)
- centerText("NO GREIFING")
- m.setCursorPos(1, y2 + 6)
- centerText("NO ABUSIVE LANGUAGE")
- m.setCursorPos(1, y2 + 8)
- centerText("RESPECT OTHERS")
- m.setCursorPos(1, y2 + 10)
- centerText("BANNED ITEMS ARE")
- m.setCursorPos(1, y2 + 12)
- centerText("AVAILABLE ON OUR ENJIN PAGE")
- m.setCursorPos(1, y2 + 14)
- centerText("LINKSPHERE.ENJIN.COM")
- m.setCursorPos(1, y2 + 16)
- centerText("STAFF SHALL NOT ABUSE POWER")
- m.setCursorPos(1, y2 + 18)
- centerText("HAVE FUN")
Advertisement
Add Comment
Please, Sign In to add comment