Search results

  1. B

    Open Server InceptiModded - EPiCCraft Modpack - Nothing Banned - Open - 24/7 - Mature Community - PvP/PvE -

    Try googling "Where is an ip" and find a site that will track the ip. Doesn't take much leg-work...
  2. B

    What's your 1.6 modlist?

    I run Resonant Rise with a couple of extras: Optifine Sonic Ether's Unbelievable Shaders (ultra with dof) Macro / keybind
  3. B

    Skeleton dressed exactly like me?

    Stick that puppy in a safari net and it could make for a killer mob farm!
  4. B

    1.7.x Packs Yet!? [Mindcrack/DW20/Ultimate/Lite/Horizons/Monster/Unleashed/Unhinged/Tech/Magic/etc]

    According to the forum entry for Ender IO, it looks like the only difference is the ability to restrict Ender IO pipes to a specific liquid. Even the active pull functionality seems identical. What exactly is so different, other than visual differences?
  5. B

    First ME Encoded Patterns

    All AE functions are supported by MiscPeripherals, so SkyNet just MAY be around the corner in Minecraftia! As for me, it's a 3x3 MAC, first pattern is for more patterns, then the various things needed for a larger MAC! I really like the idea of using it to make logistic pipes though. I too am...
  6. B

    Limiting amount of a certain resource in an AE network

    My option is to set up an ME Bridge from MiscPeripherals. Have an attached computer check a list of resources every 60 seconds or so and send the excesses to a trash can. 3 blocks, and you can manage as many resources as you want.
  7. B

    Tinkers Construct smeltery questions.

    I use a turtle facing the basin with a block os stone over it. It keeps trying to pull from the basin. When it succeeds, it flashes redstone on top and starts over. The redstone signal passes through the stone and starts the pouring over again. Visually, it looks like the next block is...
  8. B

    1.7.x Packs Yet!? [Mindcrack/DW20/Ultimate/Lite/Horizons/Monster/Unleashed/Unhinged/Tech/Magic/etc]

    Dodgy, just FYI Dartcraft is at 1.6.2. http://www.minecraftforum.net/topic/1686840-162-dartcraft-beta-0205/ ExtraUtils: http://www.minecraftforum.net/topic/1776056-15-162-betaforge-extra-utilities-v024g/
  9. B

    Need new deployer

    local side = "back" while true do os.pullEvent("redstone") if redstone.getInput(side) then for i=1,16 do if turtle.getItemCount(i)>1 then turtle.select(i) turtle.place() break end end end end Change the "back" to whatever side you will be...
  10. B

    Block placement mechanisms....

    Turtles. Edit: I know you think cc is op, but you can program a turtle to act exactly like the blocks you mentioned. Op-ness is throttled by your usage.
  11. B

    Why Do People Always Build Boxes?

    I like this. There is a certain understated class to a black and white motif, and your use of the terrain vs destruction of it really is quite nice.
  12. B

    Why Do People Always Build Boxes?

    So rather than building a bunch of boxes, you've built a bunch of relatively identical misshapen houses from identical materials? I fail to see the advantage.
  13. B

    An AE Conundrum

    The use of computercraft is the only way I have found to accurately auto manufacture a specified number of items without any excess sub-recipes. The only reason it works is that you can set the loop time between crafting requests to be slightly higher than the amount of time it takes to make the...
  14. B

    When do you build a Gravi-chestplate/Quantum armor?

    If you're playing on a GT server, MPS is just as expensive as a GraviSuit. On non-gt servers the it's just no reason for me to make a gravi at all since MPS does everything and more for a LOT less material cost.
  15. B

    An AE Conundrum

    It would be a pretty simple program, honestly. I could do it in about 5 minutes when I get home. Let me know if you'd like me to and I can send you a pastebin link this evening. Unless, of course, that wouldn't be sufficiently impressive for video...
  16. B

    An AE Conundrum

    I just lol'd! That might be going a bit far.
  17. B

    An AE Conundrum

    Use an ME Bridge from MiscPeripherals and program a computer to check the AE inventory every so often. Then have it tell your system to craft the difference between what it has and what it wants for each recipe you set up. The advantage to this is that it is EXTREMELY scalable, in that you can...
  18. B

    Question about Turtles

    So you do the same kind of thing, but with colored bundled cable coming out of 3 sides of the computer. Or make 34 computers with the following code and wrap a redstone signal around from the last back to the first. You can start the first cycle with a button press, or do some extra coding to...