<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://www.computercraft.info/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Chuck</id>
		<title>ComputerCraft Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://www.computercraft.info/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Chuck"/>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/Special:Contributions/Chuck"/>
		<updated>2026-07-11T14:47:52Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.24.1</generator>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Turtle_(API)&amp;diff=2086</id>
		<title>Turtle (API)</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Turtle_(API)&amp;diff=2086"/>
				<updated>2012-07-11T11:14:19Z</updated>
		
		<summary type="html">&lt;p&gt;Chuck: turtle.drop ([count])&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Turtle API is used to Work with your Turtles.&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!style=&amp;quot;background:#EEE&amp;quot; width=&amp;quot;200px&amp;quot;|Method name&lt;br /&gt;
!style=&amp;quot;background:#EEE&amp;quot; width=&amp;quot;*&amp;quot;|Description&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.forward]]()&lt;br /&gt;
|Let the Turtle move forward&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.back]]()&lt;br /&gt;
|Let the Turtle move back&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.up]]()&lt;br /&gt;
|Let the Turtle move up&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.down]]()&lt;br /&gt;
|Let the Turtle move down &lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.turnLeft]]()&lt;br /&gt;
|The Turtle turns left&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.turnRight]]()&lt;br /&gt;
|The Turtle turns right&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.select]]( slotNum )&lt;br /&gt;
|The Turtle selects the given Slot (1 is top left, 9 is bottom right)&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.getItemCount]]( slotNum )&lt;br /&gt;
|Counts how many items are in the given Slot&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.getItemSpace]]( slotNum )&lt;br /&gt;
|Counts how many items you need to fill the stack in the given Slot&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.dig]]()&lt;br /&gt;
|Breaks the Block in front&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.digUp]]()&lt;br /&gt;
|Breaks the Block above&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.digDown]]()&lt;br /&gt;
|Breaks the Block below&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.place]]()&lt;br /&gt;
|Places a Block of the first available slot in front&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.placeUp]]()&lt;br /&gt;
|Places a Block of the first available slot above&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.placeDown]]()&lt;br /&gt;
|Places a Block of the first available slot below&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.detect]]()&lt;br /&gt;
|Detects if there is a Block in front&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.detectUp]]()&lt;br /&gt;
|Detects if there is a Block above&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.detectDown]]()&lt;br /&gt;
|Detects if there is a Block below&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.compare]]()&lt;br /&gt;
|Detects if the block in front is the same as the one in the first available slot&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.compareUp]]()&lt;br /&gt;
|Detects if the block above is the same as the one in the first available slot&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.compareDown]]()&lt;br /&gt;
|Detects if the block below is the same as the one in the first available slot&lt;br /&gt;
|-&lt;br /&gt;
|[[turtle.drop]]( [count] )&lt;br /&gt;
|Drops all items in the first available slot, or if [count] is specified, drops that many items.&lt;br /&gt;
|}&lt;br /&gt;
[[Category:APIs]]&lt;/div&gt;</summary>
		<author><name>Chuck</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Turtle.forward&amp;diff=2085</id>
		<title>Turtle.forward</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Turtle.forward&amp;diff=2085"/>
				<updated>2012-07-11T11:02:43Z</updated>
		
		<summary type="html">&lt;p&gt;Chuck: Returns a boolean&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Function&lt;br /&gt;
|name=turtle.forward&lt;br /&gt;
|api=turtle&lt;br /&gt;
|returns=[[boolean]] whether the turtle succeeded in moving backwards&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Attempts to move the turtle forward.&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Trys to move the turtle forward and outputs whether it worked or not.&lt;br /&gt;
|code=if turtle.forward() then&lt;br /&gt;
  [[print]] (&amp;quot;Turtle moved forward.&amp;quot;)&lt;br /&gt;
 else&lt;br /&gt;
  [[print]] (&amp;quot;Turtle didn't move forward.&amp;quot;)&lt;br /&gt;
 end&lt;br /&gt;
|output= Turtle moved forward. or Turtle didn't move forward.&lt;br /&gt;
}}&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Trys to move the turtle forward x number of times. X is spezified by the user and if the turtle can't move forward it will break the block infront of it.&lt;br /&gt;
|code=Arg = (...) -- gets the param from the user&lt;br /&gt;
 if Arg ~= nil then&lt;br /&gt;
  Arg = [[tonumber]] (Arg) -- make it a number&lt;br /&gt;
  a = 1&lt;br /&gt;
  while a &amp;lt;= Arg do&lt;br /&gt;
   if not turtle.forward() then&lt;br /&gt;
    [[turtle.dig]]()&lt;br /&gt;
    turtle.forward()&lt;br /&gt;
   end&lt;br /&gt;
  a = a + 1&lt;br /&gt;
  end&lt;br /&gt;
 else&lt;br /&gt;
  [[print]] (&amp;quot;Missing parameter.&amp;quot;)&lt;br /&gt;
 end&lt;br /&gt;
|output= Either the trutle moving the specified amount of times. or Missing parameter.&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Chuck</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=User:Chuck&amp;diff=2051</id>
		<title>User:Chuck</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=User:Chuck&amp;diff=2051"/>
				<updated>2012-07-09T09:35:02Z</updated>
		
		<summary type="html">&lt;p&gt;Chuck: Created page with &amp;quot;Chuck, a French schoolboy who discover ComputerCraft.  The best mod I've ever seen! :)&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Chuck, a French schoolboy who discover ComputerCraft. &lt;br /&gt;
The best mod I've ever seen! :)&lt;/div&gt;</summary>
		<author><name>Chuck</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Talk:Calculator_Tutorial&amp;diff=2050</id>
		<title>Talk:Calculator Tutorial</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Talk:Calculator_Tutorial&amp;diff=2050"/>
				<updated>2012-07-09T09:32:32Z</updated>
		
		<summary type="html">&lt;p&gt;Chuck: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Not exactly the most well-written script.&lt;br /&gt;
--[[User:Onionnion|Onionnion]] 02:32, 6 May 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When do you give the result to the user? &lt;br /&gt;
--[[User:Chuck|Chuck]] 11:31, 9 July 2012&lt;/div&gt;</summary>
		<author><name>Chuck</name></author>	</entry>

	</feed>