Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --get periperals sides or network name
- monitor = peripheral.find("monitor")
- target = peripheral.find("create_target")
- textutils.slowPrint("program is running")
- local x,y = target.getSize()
- -- clear the target block
- target.clear()
- --start main program to establish the bridge between cc: tweaked and create using CC:C bridge mod
- while(true) do
- for i=1,y do
- monitor.setCursorPos(1, i)
- monitor.write(target.getLine(i))
- end
- sleep(0.3)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement