Are there any mods that add remote viewing capability like CCTV cameras or scrying? I know portals used to render at one point, like in Grumpy's mod spotlight.
WTB Camera Turtle!Are there any mods that add remote viewing capability like CCTV cameras or scrying? I know portals used to render at one point, like in Grumpy's mod spotlight.
Hehehe, you can kill people's computers and lag people's servers with a simple line!I bet RichardG will happily add it to MiscPeripherals up if you suggest it together with a cool prank they could be used for...
I want to write a mining turtle program where it places blocks from the filled slots. How do I make it so that when there are no items in slot 1 it will use the items in slot 2?
Are there any mods that add remote viewing capability like CCTV cameras or scrying? I know portals used to render at one point, like in Grumpy's mod spotlight.
I had just been thinking about that, actually- Wouldn't it be cool to load a digital camera into a turtle, and have the (wirelessly-controlled) turtle deposit memory cards in an enderchest, or even stream footage (well... send photos, at least) over Rednet? You could spy on people without risking much more than a stone and iron box!Not CCTV but there is a camera mod out there that lets you take pictures.
The only mods I know with capability even close to that are see-through PortalGun portals (before the current rewrite of the mod- those haven't been re-added yet), and CameraCraft, which only allows low-resolution still photos.Are there any mods that add remote viewing capability like CCTV cameras or scrying? I know portals used to render at one point, like in Grumpy's mod spotlight.
...I...I...I searched this...on google. Just now."Hello everyone. DW20 here to show off a new spotlight. Welcome PeepingCraft"
LOL
It's a LOT of steel for something that can be automated with a powered furnace.
Now, if it gave "Steamed Beef" and "Steamed Potato" that had better saturation and hunger points, I can see me investing in it.
The condition you wish to check is the result of calling turtle.place(), which returns true if it was able to place the block and false if not.I want to write a mining turtle program where it places blocks from the filled slots. How do I make it so that when there are no items in slot 1 it will use the items in slot 2?
if not turtle.place() then turtle.select(2) end
local slot = 1
while slot < 17 do
if turtle.place() then break end
slot = slot + 1
turtle.select(slot)
end
Make it a wireless turtle, streaming video to a CC monitor. Give it the ability to give commands to other wireless turtles. Create turtle army. Command it from your couchI had just been thinking about that, actually- Wouldn't it be cool to load a digital camera into a turtle, and have the (wirelessly-controlled) turtle deposit memory cards in an enderchest, or even stream footage (well... send photos, at least) over Rednet? You could spy on people without risking much more than a stone and iron box!
Using MFR conveyor belts?I want to able able to push a whole cow into it and steam the whole thing. Getting leather, bones, and cooked beef out the other end.
Another question: In computercraft how do you get use command line arguments? For example there is a turtle program "go" that accepts 1 or 2 arguments (direction and distance) How do implement that in my program?
Another question: In computercraft how do you get use command line arguments? For example there is a turtle program "go" that accepts 1 or 2 arguments (direction and distance) How do implement that in my program?
I've been thinking about this. Structure pipe with gate on the electrolyzer, set to emit redstone signal when machine isn't working. Invert the signal, send it to a router set to extract from the top. Import bus on the router. When the machine has the incorrect amount of dusts, and stops, the router will stop getting redstone signal, and send the dusts back into the system. Just an idea I had. Going to have to test this soon.I need a bit help, i can't think of a way of doing it :/
I want to automate Industrial Electrolyzer with Applied Energistics. I have a big load of every Kind of Dust that dont have a good use except being electolyzed.
But i can not just put a Export Bus on it, it would stuck and other Dusts would store up.
The only way i know is with RP2 Sorting machines and tell it the exact Amount that it need. But then i would have to export all the Dust out of the AE System and into a chest.
Somebody know another way to do it, that is Fail safe?