←  Peripherals and Turtle Upgrades

ComputerCraft | Programmable Computers for Minecraft

»

[CC1.53][MC1.5.2] MiscPeripherals 3.3

Locked

amtra5's Photo amtra5 02 Apr 2013

Hey RG, would you mind updating the documentation, I can't info on the wand turtle and chat box.
Quote

Aetherr_'s Photo Aetherr_ 03 Apr 2013

Can I use this mod on my server?
Quote

abculatter_2's Photo abculatter_2 03 Apr 2013

I found what's either a derp-bug or my own derp;
XP turtles have two methods with the call name get(), one which gets the experience points in the turtle, another which gets experience which is in front of it.
If there is any different between the two name-wise, I can't see it.
Quote

Avous's Photo Avous 04 Apr 2013

Any chance for a EU, MJ, or Blutricity Reader? I'm using Ultimate FTB on a server and this is the only Peripheral that comes with it.

However, I recently made a Fusion Reactor on my Survival World and I'd like to track my EU usage.
Quote

RichardG867's Photo RichardG867 04 Apr 2013

While you can do stuff like that with Nuclear Control energy counters, I might make that standalone.
Quote

Avous's Photo Avous 04 Apr 2013

Thank you for the reply yet I can't get it to print the active output and potential maximum output of my Fusion Reactor?

I just see an energy level(100M max output should be around 1M?) and maximum storage level
Quote

Lindenk's Photo Lindenk 05 Apr 2013

Although not exactly a peripheral, What about a handheld computer with a built in rednet modem? You could use it to send rednet signals from your person without needing to place down a computer or turtle (or do other things like play snake). Just an idea
Quote

Cloudy's Photo Cloudy 05 Apr 2013

They are planned in CC.
Quote

Sora Firestorm's Photo Sora Firestorm 05 Apr 2013

Quick suggestion : Could you make Immibis's Dimensional Anchor a valid Chunkloader module option?
Quote

theoriginalbit's Photo theoriginalbit 05 Apr 2013

View PostRichardG867, on 30 September 2012 - 01:30 PM, said:

Interactive Sorter
When an item enters the sorter, it emits event "isort_item", with the item identifier and amount as parameters.
If possible, I think it might be nice if it were able to give which direction it came in from like so
'top'
'bottom'
'front'
'back'
'left'
'right'
and save finding the side a player is on
'player'

it could allow for some intelligent code like this (pseudo code)
if the item has come from the bottom (input system/source) sort it appropriately out the top (storage area)
if the item has come from the top (requested from storage from another sorter) pass it out the bottom (output chest along the line somewhere)
if the item has come in from a player send out the left (item processing such as ores to dusts and such)
if the item has come from the left sort (processed materials) it appropriately out the top (chests) and right (smelting)
if the item has come from the right (been smelted) sort it appropriately out the top (storage area)
Quote

madsmith's Photo madsmith 06 Apr 2013

RichardG, two bugs regarding XP turtles.

Seems like these were mentioned before, back in february, but it's still broken in 3.1c.

1) You need to rename the get/getUp/getDown functions as get (raw experience in turtle) is clobbered by the broken (get experience from object in front of me).

2) There is a bug in TurtleXPSource. You are getting the TileEntity next to the turtle, validating that it's a Turtle, but then you're using the calling turtle to get experience from and not the TileEntity returned.

From PeripheralXP.class
  public static class TurtleXPSource
	implements IXPSource
  {
	public int get(ITurtleAccess turtle, int x, int y, int z, int side)
	{
	  any te = turtle.getWorld().q(x, y, z);
	  if (!(te instanceof ITurtleAccess)) return 0;
	  PeripheralXP xp = (PeripheralXP)Util.getPeripheral(turtle, PeripheralXP.class);

Notice on the last line, you're using turtle and not te
Quote

Aedda's Photo Aedda 06 Apr 2013

I am unable to craft Wrench Turtles. I have tried wrenches from BC, IC2, TE, and the RC crowbar. I have tried using each type of Turtle in combination with each type of wrench on the left and right side inside both the 2x2 and 3x3 crafting grids (using the inventory and vanilla crafting table).

I am currently using:
Minecraft 1.4.7
Forge 534
ComputerCraft 1.5
MiscPeripherals 3.1c
IC2 1.112
BC 3.4.3
RC 6.17.0.0
TE 2.2.2.2

I've tried Googing, searching these forums, and inquiring on irc with no feed back to what may be causing this issue.

From the configuration file:
# Enable the Wand turtle upgrade
B:enableWand=true
B:enableWrench=true

Any ideas? Thanks
Quote

Jappards's Photo Jappards 08 Apr 2013

do you want to make a computer and rednet module for steve`s carts and implement it on your mod?
imagine the possibilities.
OT:
and why don`t you make a Quantum suit at the forgeCraft server?
Quote

Lost Ninja's Photo Lost Ninja 12 Apr 2013

Any chance of either adding the Omni Wrench (or similar tools) to a turtle so you can use their features to change block direction (looking at placing slabs in the upper position (or lower and wrenching them))? Or just adding that functionality to the engineering turtles?
Quote

knightie's Photo knightie 13 Apr 2013

I get this error when I tried to start minecraft, can someone look at it?

http://pastebin.com/8pjG6Yen
Quote

RichardG867's Photo RichardG867 13 Apr 2013

An update.

I have been approached with concerns about the nature of my mod, and for that reason I am discontinuing the MiscPeripherals components which use the internals of other mods, including ComputerCraft. The list of cut features includes, but is not restricted to: all coremod, recipes with CC items, alchemist turtle in-world transmutation, Steve's Carts support, ChickenChunks for crafting chunkloader turtles, Nuclear Control support.

Those components will be cut starting the next beta for 1.5.

Peace out.
Quote

fomenta's Photo fomenta 13 Apr 2013

View PostRichardG867, on 13 April 2013 - 07:07 AM, said:

An update.

I have been approached with concerns about the nature of my mod, and for that reason I am discontinuing the MiscPeripherals components which use the internals of other mods, including ComputerCraft. The list of cut features includes, but is not restricted to: all coremod, recipes with CC items, alchemist turtle in-world transmutation, Steve's Carts support, ChickenChunks for crafting chunkloader turtles, Nuclear Control support.

Those components will be cut starting the next beta for 1.5.

Peace out.

This is disappointing news. I've always appreciated your efforts to add random functionality to turtles, even if I didn't use the mods. It's a shame these differences can't be worked out RichardG :-/.

Guess I'm not updating any time soon.

Regardless, thanks for all your work on this project.
Quote

RichardG867's Photo RichardG867 13 Apr 2013

The mod is not gone, just parts that rely on the deep internals of other mods.

In short, anything I use that there's no API for? Gone, except if the mod author gives me permission. I already got a couple of those.
Quote

Kye_Duo's Photo Kye_Duo 13 Apr 2013

wow...that totally sucks...especially the loss of CC turtle items...WHY is this happening?
Quote

RichardG867's Photo RichardG867 13 Apr 2013

CC turtles are not going out. Just the stuff on MY MOD that interacts with the internals of other mods.
Quote
Locked