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

Help with a program found online

Started by SmexiiBacon, 03 August 2014 - 05:09 PM
SmexiiBacon #1
Posted 03 August 2014 - 07:09 PM
Hello there,
I found a youtube video, https://www.youtube.com/watch?v=cPGYSG19Y2U and the codes (http://pastebin.com/eqVEnu2H COMPUTER and http://pastebin.com/bBBxyeV5 TURTLE )
I am trying to get this setup exactly like it is in the video however, I know nothing about cc or programming. I would like someone to look over the codes, and tell me step by step, what I would have to do to get this to work in my own world. Right off the bat I see that the turtle id in the computer code if 11. Would I have to change that to 1 since I have not crafted a turtle in my world? (Real noob here) Also after looking in the turtle code, there is something about renaming the safari nets (would I have to do this) Also I am going to be using different mobs so I would also appreciate if someone could help me with that as well

I know I am asking for a help and I would appreciate any help I could get.
TheOddByte #2
Posted 05 August 2014 - 04:02 PM
First of all, look up what ids you have on the computer and on the turtle, you can do this by typing "id" and pressing enter.
Lets say that your computer gave you the id 0 and the turtle gave you the id 1.
Now go into the computer code and change turtleId to 1, then go into the turtles code and change compId to 0
SmexiiBacon #3
Posted 09 August 2014 - 04:21 AM
First of all, look up what ids you have on the computer and on the turtle, you can do this by typing "id" and pressing enter.
Lets say that your computer gave you the id 0 and the turtle gave you the id 1.
Now go into the computer code and change turtleId to 1, then go into the turtles code and change compId to 0

Thank you.