Wednesday, June 26, 2013

New Idea

So, I saw GenerikB doing a thing with Hexxit, and it looks really cool! I think that modpack could be used for something like an open-world dynamic Super-hostile. Of course, the modpack is in 1.5 and 1.6 was just released, so I'm going to give it some time to update and then start the series. With this, it could be fun to bring in a partner from time to time, switch it up a bit, bring in different people and record.

Wednesday, June 19, 2013

proper power

2 steam boilers

One boiler is essentially 2xMV and 3xLV (350 EU/T)

One boiler is 144MJ/T

If each connection on an energy bridge passes 160mb/T that is 77EU/T, so that would require 2 connections per MV Producer or 2 LV producers per. If the connection only gives 80mb/t it would require 4 per MV

So then if I want to have one boiler dedicated to each MJ and EU, but I also wanted to have enough capacity in my energy bridges to use 1.5 boilers . . .

That would mean I'd need to be able to output approximately 525eu/t. That would mean 3 MV producers and 4 LV.

Thursday, June 13, 2013

Enchanting Turtle

This seems to work just fine"

-- Clearing Terminal
term.clear()
term.setCursorPos(1,1)
turtle.select(1)
-- Set turtle to collect XP
m=peripheral.wrap("right")
m.setAutoCollect(true)
while true do
    if m.getLevels() > 30 then
        turtle.suckDown()
        m.enchant(30)
        turtle.dropDown()
    end
    sleep(1)
end

Killer Turtle

Mostly working program, might still have kinks:

n = 0
-- Clearing Terminal
term.clear()
term.setCursorPos(1,1)
print("DIE!!!!")
while true do
    turtle.attack()
turtle.attack()
turtle.attack()
n = n + 1
if n == 16 then
for i = 1, 16 do
turtle.select(i)
turtle.drop()
end
n = 0
end
    sleep(0.5)
end

Tuesday, June 11, 2013

Working on computercraft again

Two programs today, pretty simple ones. I have not tested them yet so there may be some bugs to work out. First is for my attack turtle:

-- Clearing Terminal
term.clear()
term.setCursorPos(1,1)

print("DIE!!!!")

while true do
    turtle.attach()
    sleep(0.01)
end

Second will be for the XP turtle to enchant books!

-- Clearing Terminal
term.clear()
term.setCursorPos(1,1)

turtle.select(1)

-- Set turtle to collect XP
setAutoCollect(true)

while true do
    if getLevels() > 30 then
        if turtle.getItemCount(1) < 1 then
            turtle.suck()
        end
        enchant(30)
        turtle.drop()
    end
    sleep(1)
end

Wednesday, June 5, 2013

Channel trailer?

Here's a little blurb I've been playing with for my channel trailer, I think it sounds ok, but I have to record it and see how it goes.

Hello strangers, Munchmo here. Welcome to my channel, I hope you'll stick around a while. To tell you a little about what I do, I make all sorts of gaming videos with a focus on Minecraft but I play many other games I enjoy. I release a variety of daily Minecraft videos. You'll get Vanilla and Modded Minecraft, as well as PVP, custom maps and other challenges! On my channel you'll also get new videos from games such as Timber and Stone, Don't Starve, Hawken, and anything else I feel like playing. In my archive you'll be able to find other games such as Tribes: Ascend, Binding of Isaac, The Walking Dead, Bioshock Infinite, and many more. Thanks for giving me your time and I hope you'll join the ranks of Munchmo's Minions by clicking that subscribe button!

Huzzah!

I'm sure you guys have seen by now, but I'm so happy I got to play Calamity with Guude! It was fun playing against him, and fun playing with him on my team. I really do hope I get a chance to play with him again and some of the other Mindcrackers.

Monday, June 3, 2013

More notes to self

I think I want to start playing with some of the gregtech automation stuff (if it is in this version of the modpack) like the electric buffer and advanced regulator. Here's a link to more information: http://gregtech-addon.wikispaces.com/Electric+Automation