This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
JelaFish's profile picture

Video, bundled cable basics

Started by JelaFish, 29 July 2012 - 09:21 PM
JelaFish #1
Posted 29 July 2012 - 11:21 PM
[media]http://www.youtube.com/watch?v=I5v3WaQVMNw&feature=plcp[/media]

If you found this helpful check out my other computercraft tutorials, thanks for watching :ph34r:/>/>
BigSHinyToys #2
Posted 30 July 2012 - 02:12 AM
only one slight criticism you used a sleep() instead of waiting for a Redstone event with a os.pullEvent()
Other than that it is a good tutorial.
JelaFish #3
Posted 30 July 2012 - 11:43 AM
Thanks for the correction :ph34r:/>/>
KingMachine #4
Posted 01 August 2012 - 05:53 AM
You're a good guy greg. I watched it to see if I'd learn anything, and in practice, no I didn't, but in logic I leveled up a wee bit. Well done video as well. High quality tutorial.
JelaFish #5
Posted 02 August 2012 - 09:22 PM
Thanks, compliments from people from the computercraft forums mean a lot to me :ph34r:/>/>
redeye83 #6
Posted 20 January 2013 - 04:44 AM
only one slight criticism you used a sleep() instead of waiting for a Redstone event with a os.pullEvent()
Other than that it is a good tutorial.

So why is this better? Does it create less lag?
BigSHinyToys #7
Posted 20 January 2013 - 02:52 PM
only one slight criticism you used a sleep() instead of waiting for a Redstone event with a os.pullEvent()
Other than that it is a good tutorial.

So why is this better? Does it create less lag?
if you have one computer that is running this loop and sleeping between that is ok if you have a lot it will begin to be a problem. the more computers executing code the more the lag. but if you have the same hundred all waiting for a redstone event that will cause no lag as computers will only activate when something happens.