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

WR-CBE

Started by ihatetn931, 30 December 2014 - 03:41 PM
ihatetn931 #1
Posted 30 December 2014 - 04:41 PM
Is there a way to control the wr-cbe transmitters from a computer with cc 1.65 and minecraft 1.7.10?
Lyqyd #2
Posted 30 December 2014 - 05:07 PM
In previous versions, the transmitters and receivers were ComputerCraft peripherals. If that still holds true, you should just need to place them adjacent to a computer and use the peripheral methods they provide. If that's no longer the case, you could try OpenPeripheral, but I don't know if they support that mod.
ihatetn931 #3
Posted 30 December 2014 - 05:55 PM
I've tried putting them next to a computer and wrappin them but i just get nill, don't think openperipheral supports it, That's kind of a bummer
Dragon53535 #4
Posted 30 December 2014 - 05:57 PM
Are you trying to print the variable you wrapped it to?
Or were you trying to use some peripheral method?

If you did the first, and it didn't print anything, then yeah you can't.

If you did the second and it gave you "attempting to index a nil value" then you can't.

If you did the second and it gave you "attempt to call nil" then you can, just that whatever method you used, doesn't work.
ihatetn931 #5
Posted 30 December 2014 - 06:05 PM
I was trying to use a peripheral method, like setFreq and ect but nothing worked
Lyqyd #6
Posted 30 December 2014 - 07:25 PM
Put the transmitter/receiver on the right side of a computer, open the Lua prompt, and type the following line, please:


if peripheral.isPresent("right") then textutils.tabulate(peripheral.getMethods("right")) else print("Not a peripheral") end

Let us know what the output was.
ihatetn931 #7
Posted 30 December 2014 - 07:58 PM
I get "Not a peripheral"
Lyqyd #8
Posted 30 December 2014 - 08:02 PM
That answers the question, then. Sorry! Looks like there isn't any peripheral support for them in the versions you're using.
Cranium #9
Posted 30 December 2014 - 09:15 PM
That's odd, I could have sworn that chickenbones had added in the CC API so that we could do just that.
ihatetn931 #10
Posted 30 December 2014 - 10:17 PM
I remeber it working in Minecraft 1.6.4 but i guess it dosen't work in 1.7.10.