Difference between revisions of "Built In Turtle Programs"

From ComputerCraft Wiki
Jump to: navigation, search
m (Added NeedsWork tag)
(Updating this list, and adding a see also section to the CraftOS shell page)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{NeedsWork|Updating this page to give more detailed information similar to [[CraftOS Shell]] would be useful. - [[User:Oeed|Oeed]] 07:50, 26 March 2014 (GMT)}}
+
[[CraftOS_Shell|Turtles have the same programs installed by default as any other computer]], but with the addition of turtle-specific programs.
  
Craft
+
== Programs ==
Dance
+
<table style="width: 100%; border: solid 1px black; margin: 2px; border-spacing: 0px;">
Excavate
+
<tr><td colspan="2" style="font-weight: bold; font-size: large; padding-bottom: .3em; border-bottom: solid #C9C9C9 1px; background: #D3FFC2; line-height:28px;">
Refuel
+
[[File:Grid_disk.png|24px]]&nbsp;&nbsp;
Tunnel
+
Additional TurtleOS Shell Programs
Turn
+
</td></tr>
 +
<tr><td style="width: 350px; background: #E0E0E0; padding: .4em; font-weight:bold;">Program Name</td><td style="background: #E0E0E0; padding: .4em; font-weight:bold;">Description</td></tr>
  
[[Category:Programs]]
+
<tr style="background-color: #E8E8E8;"><td style="border-top: solid #C9C9C9 1px; padding: .4em;"><div id="cmd-apis">[[craft]]</div><tt>craft</tt></td>
 +
<td style="border-top: solid #C9C9C9 1px; padding: .4em;">The turtle will, if it is able, craft an item from the contents of its inventory.</td></tr>
 +
 
 +
<tr style="background-color: #FFFFFF;"><td style="border-top: solid #C9C9C9 1px; padding: .4em;"><div id="cmd-alias">[[dance]]</div><tt>dance</tt></td>
 +
<td style="border-top: solid #C9C9C9 1px; padding: .4em;">Initiates "get down" procedure.</td></tr>
 +
 
 +
<tr style="background-color: #FFFFFF;"><td style="border-top: solid #C9C9C9 1px; padding: .4em;"><div id="cmd-alias">[[equip]]</div><tt>equip <side></tt></td>
 +
<td style="border-top: solid #C9C9C9 1px; padding: .4em;">The turtle will attempt to place a tool on its specified side. <b>Note:</b> Added by ComputerCraft 1.6</td></tr>
 +
 
 +
<tr style="background-color: #E8E8E8;"><td style="border-top: solid #C9C9C9 1px; padding: .4em;"><div id="cmd-apis">[[excavate]]</div><tt>excavate <width></tt></td>
 +
<td style="border-top: solid #C9C9C9 1px; padding: .4em;">Digs a square-shaped quarry to bedrock, of width equal to that specified.</td></tr>
 +
 
 +
<tr style="background-color: #FFFFFF;"><td style="border-top: solid #C9C9C9 1px; padding: .4em;"><div id="cmd-alias">[[go]]</div><tt>go <?></tt></td>
 +
<td style="border-top: solid #C9C9C9 1px; padding: .4em;">Moves the turtle.</td></tr>
 +
 
 +
<tr style="background-color: #E8E8E8;"><td style="border-top: solid #C9C9C9 1px; padding: .4em;"><div id="cmd-apis">[[refuel]]</div><tt>refuel <amount></tt></td>
 +
<td style="border-top: solid #C9C9C9 1px; padding: .4em;">Attempts to replenish the turtle's [[fuel]] supply with items from its inventory.</td></tr>
 +
 
 +
<tr style="background-color: #FFFFFF;"><td style="border-top: solid #C9C9C9 1px; padding: .4em;"><div id="cmd-alias">[[tunnel]]</div><tt>tunnel <width></tt></td>
 +
<td style="border-top: solid #C9C9C9 1px; padding: .4em;">Digs a horizontal tunnel leading off in the direction the turtle is facing.</td></tr>
 +
 
 +
<tr style="background-color: #E8E8E8;"><td style="border-top: solid #C9C9C9 1px; padding: .4em;"><div id="cmd-apis">[[turn]]</div><tt>turn <?></tt></td>
 +
<td style="border-top: solid #C9C9C9 1px; padding: .4em;">Causes the turtle to rotate.</td></tr>
 +
 
 +
<tr style="background-color: #FFFFFF;"><td style="border-top: solid #C9C9C9 1px; padding: .4em;"><div id="cmd-alias">[[unequip]]</div><tt>unequip<width></tt></td>
 +
<td style="border-top: solid #C9C9C9 1px; padding: .4em;">Attempts to remove a tool from the turtle's specified side. <b>Note:</b> Added by ComputerCraft 1.6</td></tr>
 +
</table>
 +
 
 +
== See also ==
 +
* [[CraftOS Shell]]
 +
 
 +
[[Category:Programs]][[Category:Lists]][[Category:Tutorials]]

Latest revision as of 16:52, 30 August 2014

Turtles have the same programs installed by default as any other computer, but with the addition of turtle-specific programs.

Programs

Grid disk.png   Additional TurtleOS Shell Programs

Program NameDescription
craft The turtle will, if it is able, craft an item from the contents of its inventory.
dance Initiates "get down" procedure.
equip <side> The turtle will attempt to place a tool on its specified side. Note: Added by ComputerCraft 1.6
excavate <width> Digs a square-shaped quarry to bedrock, of width equal to that specified.
go <?> Moves the turtle.
refuel <amount> Attempts to replenish the turtle's fuel supply with items from its inventory.
tunnel <width> Digs a horizontal tunnel leading off in the direction the turtle is facing.
turn <?> Causes the turtle to rotate.
unequip<width> Attempts to remove a tool from the turtle's specified side. Note: Added by ComputerCraft 1.6

See also