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

No comments:

Post a Comment