-- 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