Showing posts with label computercraft. Show all posts
Showing posts with label computercraft. Show all posts

Sunday, December 21, 2014

Merry Christmas from the Filbin Files

I have just posted my Christmas special...a twinkling Christmas Tree built in the Direwolf20 modpack.



Also, I'd like to share the ComputerCraft code used in the build:

i = 0
while i < 900 do
rand = math.random(1,4)
if rand==1 then
redstone.setOutput("left", true)
end
if rand==2 then
redstone.setOutput("back", true)
end
if rand==3 then
redstone.setOutput("right", true)
end
if rand==4 then
redstone.setOutput("top", true)
end
print(rand)
i = i + 1
sleep(1)
redstone.setOutput("left", false)
redstone.setOutput("back", false)
redstone.setOutput("right", false)
redstone.setOutput("top", false)
end

Tuesday, December 2, 2014

More Direwolf20 modpac stuff

I have been a bit remiss in updating the blog with my Minecraft activities, it's hard enough to get this updated, record videos, do my job and still have family time. So let's do this...

Episode #5 shows my work on a Tree Farm using Steve's Carts 2. Probably not the most efficient system, but it works, and I think it looks kinda cool.

Next, Episode #6 shows off some work on Storage using Steve's Factory Manager. I like the system as the process flows just make sense to me. I know I could just work towards an AE systems, but SFM seems easier to set up in the early game, and it makes me think a bit about what I want to do, and using your brain is a good thing.

Finally, in Episode #7, I compare the mining abilities of the Buildcraft mining well, Buildcraft quarry and the Computercraft mining turtle.

For some reason, Blogger can't find the video, so I'll just throw the link down here:
https://www.youtube.com/watch?v=aCuuOawgprM&feature=youtu.be

Let me know what you think.

Thursday, November 20, 2014

DireWolf20 #4

For my fourth episode, I realize I have a quick way of digging into those meteors using the mining turtle from Computercraft. In the process of that, I find something interesting inside the meteor, so I go on a quest to find more meteors.

I also find some interesting villages just waiting to be exploited.

http://youtu.be/ptXCZUodgG0


Thursday, November 13, 2014

DireWolf20 #2

My next"let's play" of the latest DireWolf20 modpack from Feed the Beast is done.



In this episode, I die, build bridges and stairs with the mining turtle, find a giant tree (aka future tree fort) and contemplate an experiment involving creepers.

The downStair program I use was downloaded from turtlescripts.com user Chaos_Therum:
http://turtlescripts.com/project/gjdhcf-Stairs

I need to get a post out showing how I downloaded the turtle script I used, but it will have to wait till I get back from my trip. I'm off to run The Avengers Half Marathon.

Wednesday, November 12, 2014

DireWolf20 #1

Hi All,
I started another series on YouTube, and it will also mark the start of this blog! yay!!

I'm playing the new DireWolf20 modpack from Feed The Beast. It's got a lot of mods in it that I want to explore, and I'm planning on working my way through all the achievements listed in the game as well.

In this episode, I look around my starting point, start gathering resources, and start with some very simple mining turtle stuff from the computercraft mod.