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

Installing a Peripheral

Started by Henness, 09 January 2013 - 10:33 AM
Henness #1
Posted 09 January 2013 - 11:33 AM
I'm not understanding how to install a peripheral correctly, and I cant seem to find any information on how to. I have the peripheral installed but there are no apis on any of my computers so I cant even use the addons. Im trying to use peripherals like:
Immibis's Peripherals
OpenCCSensors
MiscPeripherals 2.3

If someone can explain to me how I get the apis for these peripherals that would be amazing.
Orwell #2
Posted 09 January 2013 - 11:36 AM
I'm not understanding how to install a peripheral correctly, and I cant seem to find any information on how to. I have the peripheral installed but there are no apis on any of my computers so I cant even use the addons. Im trying to use peripherals like:
Immibis's Peripherals
OpenCCSensors
MiscPeripherals 2.3

If someone can explain to me how I get the apis for these peripherals that would be amazing.
Just put them into the /mods folder like you did with ComputerCraft. You should then have additional recipes in your MineCraft. You should see the peripherals in creative mode as well. Each mod will you give you one or more blocks that you can use as peripheral (place next to pc, peripheral.wrap(), etc…)
Henness #3
Posted 09 January 2013 - 12:23 PM
yes I have the blocks but I have no apis any time I type "m = peripheral.warp("right")" it errors attempt to call nil
Orwell #4
Posted 09 January 2013 - 12:26 PM
That might be because its:

m = peripheral.wrap("right")
Not warp. You might have made a typo here, I don't know.
Henness #5
Posted 09 January 2013 - 12:40 PM
Lol thank you I totally over looked that. works now
acces denied #6
Posted 08 February 2013 - 02:21 AM
Sorry to interrupted you, but

my Peripheral, don't worked, too and i can't open a own Topic….

Thats my Problem:

Build:
[M] Monitor on top
[C] Computer


-- test
peripheral.isPresent("top")
-- returns true
peripheral.getType()
-- returns monitor
m = peripheral.warp("top")
-- returns attempt to call nil

MC 1.4.6
CC Lights 1.481
miscperipherals-2.3
immibis peripherals
Aperture Science Turtle Upgrades

I ask for help.
sjkeegs #7
Posted 08 February 2013 - 03:43 AM
Sorry to interrupted you, but

my Peripheral, don't worked, too and i can't open a own Topic….
You can post in the "New Members" thread in "Ask a Pro", and a moderator will move it and create the thread for you.
acces denied #8
Posted 08 February 2013 - 03:48 AM
Thy… but question asked…
I try it, if nobody answers me or i have a new topic.
immibis #9
Posted 08 February 2013 - 04:12 PM
Sorry to interrupted you, but

my Peripheral, don't worked, too and i can't open a own Topic….

Thats my Problem:

Build:
[M] Monitor on top
[C] Computer


-- test
peripheral.isPresent("top")
-- returns true
peripheral.getType()
-- returns monitor
m = peripheral.warp("top")
-- returns attempt to call nil

MC 1.4.6
CC Lights 1.481
miscperipherals-2.3
immibis peripherals
Aperture Science Turtle Upgrades

I ask for help.
The solution is two posts above yours. You wrote warp instead of wrap.