Posted 06 September 2012 - 03:52 AM
Hello there fellow turtles!
I would like to present my turtle programs on this forums!
The first is my portal destroyer:
Program name: Portal ( or what you name it)
Uses: reduces the time you use to destroy portals!
Code:Pastebin: pastebin get 3PQkZVC5 Portal
Second my portal builder:
Program Name: Portalbuild ( or what you call it)
Uses: Duh!
Code:Pastebin: pastebin get 8sT7uCaU Portalbuild
New! my Mystcraft age traveler:
this has two parts
the Turtle:
Uses: Travels to The age you want… the catch, you have to have Mystcraft
Code:
Pastebin: pastebin get b1BSQHGr startup (Must be startup)
Now the console:
Uses: Sends the command to the turtle to place the age in. (uses arguments)
Code:
Pastebin: pastebin get zY6i0eX1 Travel (Or whatever you want)
More To Come!
Videos: When i get it uploaded!
Changelog:
v2: added: Portal Builder! (ps. i love the nether) + pastebin link
change: Portal Destroy to go back to the starting point!
v3: added 2 New programs for mystcraft + pastebin link
v3.1: change: added the attack command to the portal builder!
Post any bugs you encounter here and i will help/fix it!
You can also leave feedback!
I would like to present my turtle programs on this forums!
The first is my portal destroyer:
Program name: Portal ( or what you name it)
Uses: reduces the time you use to destroy portals!
Code:
Spoiler
function up()
for i=1, 5 do
turtle.dig()
turtle.up()
end
end
function back()
turtle.turnLeft()
turtle.forward()
turtle.forward()
turtle.forward()
turtle.turnRight()
end
function turn()
turtle.turnRight()
turtle.forward()
turtle.turnLeft()
end
function down()
for i=1, 5 do
turtle.dig()
turtle.down()
turtle.dig()
end
end
up()
turn()
down()
turn()
up()
turn()
down()
back()
Second my portal builder:
Program Name: Portalbuild ( or what you call it)
Uses: Duh!
Code:
Spoiler
function up()
for i=1, 5 do
turtle.place()
turtle.attack()
turtle.up()
end
end
function back()
turtle.turnLeft()
turtle.forward()
turtle.forward()
turtle.forward()
turtle.turnRight()
end
function turn()
turtle.turnRight()
turtle.forward()
turtle.turnLeft()
end
function down()
turtle.down()
turtle.place()
turtle.attack()
turtle.down()
turtle.down()
turtle.down()
turtle.down()
turtle.place()
turtle.attack()
end
function up2()
turtle.place()
turtle.attack()
turtle.up()
turtle.up()
turtle.up()
turtle.up()
turtle.place()
turtle.attack()
end
function down2()
for i=1, 5 do
turtle.place()
turtle.attack()
turtle.down()
end
end
up()
turn()
down()
turn()
up2()
turn()
down2()
back()
New! my Mystcraft age traveler:
this has two parts
the Turtle:
Uses: Travels to The age you want… the catch, you have to have Mystcraft
Code:
Spoiler
turtle.suck()
rednet.open("right") -- must be a wireless turtle
senderId, message, distance = rednet.receive()
while true do
if message == "Change_This" then -- Change Change_This to the age name (Must be 1 word)
turtle.select(1) -- also copy if to else for a new age, then change the else to a elseif
turtle.drop()
sleep(2)
turtle.suck()
os.reboot()
else
end
Now the console:
Uses: Sends the command to the turtle to place the age in. (uses arguments)
Code:
Spoiler
rednet.open("top") -- change this to the wireless modem's side
local tArgs = {...}
local x = tostring(tArgs[1] )
if not x then
print("Place Needed.")
elseif x == "Change_This" then -- Change Change_This to the age name (must be 1 word)
rednet.broadcast(x)
else
print("Cannot goto "..x)
end
Pastebin: pastebin get zY6i0eX1 Travel (Or whatever you want)
More To Come!
Videos: When i get it uploaded!
Changelog:
Spoiler
v1: added: Portal Destroyer! + pastebin linkv2: added: Portal Builder! (ps. i love the nether) + pastebin link
change: Portal Destroy to go back to the starting point!
v3: added 2 New programs for mystcraft + pastebin link
v3.1: change: added the attack command to the portal builder!
Post any bugs you encounter here and i will help/fix it!
You can also leave feedback!