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

Rednet tutorial for absolute beginners

Started by fredthead, 12 July 2013 - 09:06 AM
fredthead #1
Posted 12 July 2013 - 11:06 AM
Following on from my touchscreen tutorial, here is one for rednet messaging.
I've tried to keep it as simple as possible and it assumes no programming knowledge.

[media]http://youtu.be/qS7L1H7N8jc[/media]


Let me know if you want anything else and I'll see what I can do
RoD #2
Posted 22 July 2013 - 12:01 PM
Its good tutorial but some begginers won't understand it so easly…You should try make various examples with simple codes, like:
This is to send a message:

--id is the reciver id
id = "0"
--message is the message that you want to send to the receiver
message = "Your message here"
rednet.send(id, message, true)
--or you can make it like
rednet.send(0, "Your message here", true)
--this will send to the computer with the id "0" the message "Your message here
and to the receiver and increase the dificulity slowly…
But its a good tut :)/>