- ComputerCraft | Programmable Computers for Minecraft
- → YSPilot's Content
YSPilot's Content
There have been 10 items by YSPilot (Search limited from 10-February 22)
#123260 [Mining]Automatic Strip Mining
Posted by
YSPilot
on 03 June 2013 - 09:41 AM
in
Turtle Programs
Let me see if there is anything I can do to stop ir from using chest as fuel.
#119824 [Mining]Automatic Strip Mining
Posted by
YSPilot
on 22 May 2013 - 03:11 PM
in
Turtle Programs
Make sure that they are in slot 1.
#119041 [Mining]Automatic Strip Mining
Posted by
YSPilot
on 19 May 2013 - 06:14 PM
in
Turtle Programs
Yeah, Thank for the suggestion. I like that idea.
#117614 Real Time Clock
Posted by
YSPilot
on 13 May 2013 - 07:37 PM
in
Programs
It is important that you have HTTP enabled to use this, as there is not built in API for getting system time. Use the Pastebin command, if it doesn't work, this will not work on your monitor.
You will need to manually edit the peripheral to your setup.
Inform me if I have missed a timezone, and I will add it as soon as possible! Enjoy!
Eastern Standard Time:
Eastern Standard Time (Daylight Savings):
Greenwich Mean Time / Coordinated Universal Time:
Central Standard Time:
Central Standard Time (Daylight Savings):
Pacific Daylight Time:
Hawaii–Aleutian Time Zone:
Alaskan Standard Time:
Mountian Standard Time:
Mountian Standard Time (Daylight Savings):
Central Europe Time:
Central Europe Time(Daylight Savings):
You will need to manually edit the peripheral to your setup.
Inform me if I have missed a timezone, and I will add it as soon as possible! Enjoy!
Eastern Standard Time:
Spoiler
ymon = peripheral.wrap("right")
ymon.setTextScale(6)
term.redirect(ymon)
while true do
sleep(1)
term.setCursorPos(1,1)
write(http.get("http://www.timeapi.org/est/now?format=%20%25I:%25M:%25S").readAll())
end
term.restore()
Eastern Standard Time (Daylight Savings):
Spoiler
ymon = peripheral.wrap("right")
ymon.setTextScale(6)
term.redirect(ymon)
while true do
sleep(1)
term.setCursorPos(1,1)
write(http.get("http://www.timeapi.org/est/in+one+hour?format=%20%25I:%25M:%25S").readAll())
end
term.restore()
Greenwich Mean Time / Coordinated Universal Time:
Spoiler
ymon = peripheral.wrap("right")
ymon.setTextScale(6)
term.redirect(ymon)
while true do
sleep(1)
term.setCursorPos(1,1)
write(http.get("http://www.timeapi.org/utc/now?format=%20%25I:%25M:%25S").readAll())
end
term.restore()
Central Standard Time:
Spoiler
ymon = peripheral.wrap("right")
ymon.setTextScale(6)
term.redirect(ymon)
while true do
sleep(1)
term.setCursorPos(1,1)
write(http.get("http://www.timeapi.org/cst/now?format=%20%25I:%25M:%25S").readAll())
end
term.restore()
Central Standard Time (Daylight Savings):
Spoiler
ymon = peripheral.wrap("right")
ymon.setTextScale(6)
term.redirect(ymon)
while true do
sleep(1)
term.setCursorPos(1,1)
write(http.get("http://www.timeapi.org/cst/in+one+hour?format=%20%25I:%25M:%25S").readAll())
end
term.restore()
Pacific Daylight Time:
Spoiler
ymon = peripheral.wrap("right")
ymon.setTextScale(6)
term.redirect(ymon)
while true do
sleep(1)
term.setCursorPos(1,1)
write(http.get("http://www.timeapi.org/pdt/in+one+hour?format=%20%25I:%25M:%25S").readAll())
end
term.restore()
Hawaii–Aleutian Time Zone:
Spoiler
ymon = peripheral.wrap("right")
ymon.setTextScale(6)
term.redirect(ymon)
while true do
sleep(1)
term.setCursorPos(1,1)
write(http.get("http://www.timeapi.org/hast/in+one+hour?format=%20%25I:%25M:%25S").readAll())
end
term.restore()
Alaskan Standard Time:
Spoiler
ymon = peripheral.wrap("right")
ymon.setTextScale(6)
term.redirect(ymon)
while true do
sleep(1)
term.setCursorPos(1,1)
write(http.get("http://www.timeapi.org/akst/in+one+hour?format=%20%25I:%25M:%25S").readAll())
end
term.restore()
Mountian Standard Time:
Spoiler
ymon = peripheral.wrap("right")
ymon.setTextScale(6)
term.redirect(ymon)
while true do
sleep(1)
term.setCursorPos(1,1)
write(http.get("http://www.timeapi.org/mst/now?format=%20%25I:%25M:%25S").readAll())
end
term.restore()
Mountian Standard Time (Daylight Savings):
Spoiler
ymon = peripheral.wrap("right")
ymon.setTextScale(6)
term.redirect(ymon)
while true do
sleep(1)
term.setCursorPos(1,1)
write(http.get("http://www.timeapi.org/mst/in+one+hour?format=%20%25I:%25M:%25S").readAll())
end
term.restore()
Central Europe Time:
Spoiler
ymon = peripheral.wrap("right")
ymon.setTextScale(6)
term.redirect(ymon)
while true do
sleep(1)
term.setCursorPos(1,1)
write(http.get("http://www.timeapi.org/cet/now?format=%20%25I:%25M:%25S").readAll())
end
term.restore()
Central Europe Time(Daylight Savings):
Spoiler
ymon = peripheral.wrap("right")
ymon.setTextScale(6)
term.redirect(ymon)
while true do
sleep(1)
term.setCursorPos(1,1)
write(http.get("http://www.timeapi.org/cet/now?format=%20%25I:%25M:%25S").readAll())
end
term.restore()
#117606 [Mining]Automatic Strip Mining
Posted by
YSPilot
on 13 May 2013 - 07:00 PM
in
Turtle Programs

Credits:
- This Script uses the custom API from the Tunnel command.
- Me for the rest
- Puts a torch every 8 Blocks
- 2x1 Tunnels
- Returns to start of tunnel
- Lays a Chest at end of each tunnel
Slot 1: Torches
Slot 2: Chests
stripmine <# of blocks deep> <# of tunnels>
Download:
pastebin get n4Tp86Di stripmine
http://pastebin.com/n4Tp86Di
#117598 [Turtle] Schematic File Builder
Posted by
YSPilot
on 13 May 2013 - 06:41 PM
in
Turtle Programs
Holy crap. THis is awesome.
#117596 QRCode printer
Posted by
YSPilot
on 13 May 2013 - 06:39 PM
in
Turtle Programs
Not bad! I used it, and i like it
#117594 Auto Redstone Energy Cell Recharger
Posted by
YSPilot
on 13 May 2013 - 06:36 PM
in
Turtle Programs
Nice!!
- ComputerCraft | Programmable Computers for Minecraft
- → YSPilot's Content


