Posted 19 May 2013 - 05:37 PM
-MurderBot- Is a program for a turtle with the enchanting peripheral (misc peripheral required ), that will collect xp and loot from a farm.
pastbin: http://pastebin.com/NrAu9d0N
Mode Toggle: press M to toggle from Murder Mode to Enchant Mode.
Murder Mode - Turtle will kill mobs and take their items/xp. Once the turtle is full, it will export to the left.
Enchant Mode - Use turtle as an enchanting table. To enchant an item put it in the top left slot. By using the arrow keys, you can change the desired level of enchantment, followed by the enter key to enchant the item.
Auto Enchant : press E to switch on Auto Enchant while in the Murder mode. Fill the Bottom right slot with books/item you want enchanted each time the turtle hits level 30.
note: the monitor under the turtle is not necessary but really useful
… Also, this is my first publicly shared program, let me know what you think. :o/>
images:
I have also used this smaller program (spoiler below) to make a little more complex mob farms
pastbin: http://pastebin.com/NrAu9d0N
Mode Toggle: press M to toggle from Murder Mode to Enchant Mode.
Murder Mode - Turtle will kill mobs and take their items/xp. Once the turtle is full, it will export to the left.
Enchant Mode - Use turtle as an enchanting table. To enchant an item put it in the top left slot. By using the arrow keys, you can change the desired level of enchantment, followed by the enter key to enchant the item.
Auto Enchant : press E to switch on Auto Enchant while in the Murder mode. Fill the Bottom right slot with books/item you want enchanted each time the turtle hits level 30.
note: the monitor under the turtle is not necessary but really useful
… Also, this is my first publicly shared program, let me know what you think. :o/>
images:
Spoiler
I have also used this smaller program (spoiler below) to make a little more complex mob farms
Spoiler
slot = 1
function dropStuff()
turtle.select(slot)
turtle.dropDown()
if slot <16 then
slot = slot + 1
elseif slot == 16 then
slot = 1
end
end
print(" murdering ")
while true do
turtle.attackUp()
dropStuff()
end