Posted 24 December 2012 - 01:37 PM
hi all,
i found out about the secret starwars movie in cc and like many people have decided to build a cinema which is looking good still need to add a few things to it before completion but i has working lights and a projector (which is just a redstone lamp to give a lighting effect of a projector). So anyway I was wondering is there any way you can add more movies to the game. I found a site that does ACSII animations and also a short clip from the matrix in ascii which looks amazing its the actual footage but turned into ACSII. Now after looking on the wiki and forums i found the HTTP api which i tried using http.get("url") which worked for a while then returned an error "bios:148: to long with out yeilding" and also the movie is too big for the screen. so how will i adapt the following code to 1. make the movie smaller and 2. not get that error?
local monitor = peripheral.wrap("back") – replace with the side of the monitor
term.redirect(monitor) – redirects the output to the monitor
local sExample = http.get("http://ftp.pcworld.com/pub/screencams/ascii-matrix.html") –Get contents of page
write(sExample.readAll()) –Read and print contents of page
term.restore() – restores the output to the computer screen
i found out about the secret starwars movie in cc and like many people have decided to build a cinema which is looking good still need to add a few things to it before completion but i has working lights and a projector (which is just a redstone lamp to give a lighting effect of a projector). So anyway I was wondering is there any way you can add more movies to the game. I found a site that does ACSII animations and also a short clip from the matrix in ascii which looks amazing its the actual footage but turned into ACSII. Now after looking on the wiki and forums i found the HTTP api which i tried using http.get("url") which worked for a while then returned an error "bios:148: to long with out yeilding" and also the movie is too big for the screen. so how will i adapt the following code to 1. make the movie smaller and 2. not get that error?
local monitor = peripheral.wrap("back") – replace with the side of the monitor
term.redirect(monitor) – redirects the output to the monitor
local sExample = http.get("http://ftp.pcworld.com/pub/screencams/ascii-matrix.html") –Get contents of page
write(sExample.readAll()) –Read and print contents of page
term.restore() – restores the output to the computer screen