This is a read-only snapshot of the ComputerCraft forums,
taken in April 2020.
1.3 Help
Started by DarkNinja2462, 23 February 2012 - 09:32 PMPosted 23 February 2012 - 10:32 PM
So I totaly wanted to use the new turtles but, how do I turn a turtle on like how Cookiebal did it in his turtle factory? Also how do I use the wireless devices?????? I RLY want to know.
Posted 23 February 2012 - 11:21 PM
you can turn turtles on by having a computer do peripheral.call("left", "turnOn") this would make anything to the left of the computer (a turtle for example) turn on
you use modem's with rednet, there are already examples of rednet everywhere, I won't bother typing out another
you use modem's with rednet, there are already examples of rednet everywhere, I won't bother typing out another
Posted 23 February 2012 - 11:34 PM
Wireless modems use redset. For turtle commands type help turtle in the shell.
Posted 23 February 2012 - 11:38 PM
Help turtle wont tell me about modems
Posted 23 February 2012 - 11:41 PM
did anyone say it would?
Posted 23 February 2012 - 11:47 PM
Help turtle wont tell me about modems
help rednet
Posted 24 February 2012 - 01:41 AM
I didn't find the turnOn parameter in any help page or lua file.you can turn turtles on by having a computer do peripheral.call("left", "turnOn") this would make anything to the left of the computer (a turtle for example) turn on you use modem's with rednet, there are already examples of rednet everywhere, I won't bother typing out another
Are all the possible parameters for the peripherals documented somewhere? Or are they defined in the Java files? ^_^/>/>
Posted 24 February 2012 - 04:23 AM
I didn't find the turnOn parameter in any help page or lua file.you can turn turtles on by having a computer do peripheral.call("left", "turnOn") this would make anything to the left of the computer (a turtle for example) turn on you use modem's with rednet, there are already examples of rednet everywhere, I won't bother typing out another
Are all the possible parameters for the peripherals documented somewhere? Or are they defined in the Java files? :huh:/>/>
If you place a computer next to a computer, then use peripheral.getMethods(side), you will get a table:
lua>textutils.tabulate(peripheral.getMethods("left"))
turnOn shutdown reboot getID
Posted 24 February 2012 - 05:04 AM
They will be documented soon enough though :huh:/>/>
Posted 24 February 2012 - 11:34 AM
Ah, good to know. Haven't really had the time to play around with all the new stuff. I guess experimenting will answer most questions by itself then.^^If you place a computer next to a computer, then use peripheral.getMethods(side), you will get a table:lua>textutils.tabulate(peripheral.getMethods("left")) turnOn shutdown reboot getID
Thx for the info! :)/>/>
Yeah, I have to admit that making docs isn't really the most glorious part of development. :huh:/>/>They will be documented soon enough though B)/>/>