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

1.3 Help

Started by DarkNinja2462, 23 February 2012 - 09:32 PM
DarkNinja2462 #1
Posted 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.
Casper7526 #2
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
FuzzyPurp #3
Posted 23 February 2012 - 11:34 PM
Wireless modems use redset. For turtle commands type help turtle in the shell.
DarkNinja2462 #4
Posted 23 February 2012 - 11:38 PM
Help turtle wont tell me about modems
Casper7526 #5
Posted 23 February 2012 - 11:41 PM
did anyone say it would?
FuzzyPurp #6
Posted 23 February 2012 - 11:47 PM
Help turtle wont tell me about modems

help rednet
Espen #7
Posted 24 February 2012 - 01:41 AM
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
I didn't find the turnOn parameter in any help page or lua file.
Are all the possible parameters for the peripherals documented somewhere? Or are they defined in the Java files? ^_^/>/>
Advert #8
Posted 24 February 2012 - 04:23 AM
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
I didn't find the turnOn parameter in any help page or lua file.
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
Casper7526 #9
Posted 24 February 2012 - 05:04 AM
They will be documented soon enough though :huh:/>/>
Espen #10
Posted 24 February 2012 - 11:34 AM
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 
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.^^
Thx for the info! :)/>/>
They will be documented soon enough though B)/>/>
Yeah, I have to admit that making docs isn't really the most glorious part of development. :huh:/>/>