SHOW:
|
|
- or go back to the newest paste.
| 1 | args = {...}
| |
| 2 | Name = (args[1]) | |
| 3 | local pos = 10 | |
| 4 | - | mon = peripheral.wrap("right") -- Replace side with the side that the monitor is on
|
| 4 | + | mon = peripheral.wrap("back") -- Replace side with the side that the monitor is on
|
| 5 | mon.clear() | |
| 6 | color = 1 | |
| 7 | - | mon.setBackgroundColor(16384) |
| 7 | + | mon.setBackgroundColor(16000) |
| 8 | - | mon.setTextColor(32768) -- This makes the text black the full list is on the CC wiki |
| 8 | + | mon.setTextScale(4) |
| 9 | - | mon.setTextScale(5) -- This is the largest text scale you can make |
| 9 | + | |
| 10 | ||
| 11 | if pos==-26 then | |
| 12 | pos =18 | |
| 13 | end | |
| 14 | ||
| 15 | mon.setCursorPos(pos,1) | |
| 16 | mon.write("Buy your tinkers Construct Stuff Here!!!!!!")
| |
| 17 | - | mon.write("MonkeyBusiness Is epic!")
|
| 17 | + | |
| 18 | os.sleep(0.15) -- Replace 0.15 with any number you want (In seconds) | |
| 19 | if (color < 16000) then | |
| 20 | color = color + color | |
| 21 | else | |
| 22 | color = 1 | |
| 23 | end | |
| 24 | mon.setTextColor(color) | |
| 25 | - | mon.setBackgroundColor(color) |
| 25 | + |