Difference between revisions of "Built In Turtle Programs"
From ComputerCraft Wiki
(Created page with "Craft Dance Excavate Refuel Tunnel Turn Category:Programs") |
(Updating this list, and adding a see also section to the CraftOS shell page) |
||
(8 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | + | [[CraftOS_Shell|Turtles have the same programs installed by default as any other computer]], but with the addition of turtle-specific programs. | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | [[Category:Programs]] | + | == Programs == |
+ | <table style="width: 100%; border: solid 1px black; margin: 2px; border-spacing: 0px;"> | ||
+ | <tr><td colspan="2" style="font-weight: bold; font-size: large; padding-bottom: .3em; border-bottom: solid #C9C9C9 1px; background: #D3FFC2; line-height:28px;"> | ||
+ | [[File:Grid_disk.png|24px]] | ||
+ | Additional TurtleOS Shell Programs | ||
+ | </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> | ||
+ | |||
+ | <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
Program Name | Description |
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 |