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

Wireless Modems

Started by dekuran, 17 February 2015 - 03:35 PM
dekuran #1
Posted 17 February 2015 - 04:35 PM
So, I happen to be running CC 1.7, and want to make a network using the wireless modems.
Whenever I type

rednet.open("top")
it just says "Program not found", what am I doing wrong?
The wiki says to just type it.
Cranium #2
Posted 17 February 2015 - 04:44 PM
It sounds like you're just typing that as the computer starts. You need to put that in a program if you want to use it.
HPWebcamAble #3
Posted 17 February 2015 - 05:20 PM
To elaborate on Cranium's post, when the computer starts, it only accepts programs and their arguments.

You should probably write a program. To do that, type 'edit <name>'
After you've saved and exited from that, just type the name of the program to run it.

If you want to experiment with code a line or so at a time, run the 'lua' program.
dekuran #4
Posted 17 February 2015 - 06:03 PM
Alright, thanks.