<?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=Theeboris</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=Theeboris"/>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/Special:Contributions/Theeboris"/>
		<updated>2026-07-11T12:38:45Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.24.1</generator>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Rednet_Tutorial&amp;diff=3635</id>
		<title>Rednet Tutorial</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Rednet_Tutorial&amp;diff=3635"/>
				<updated>2012-11-06T03:46:18Z</updated>
		
		<summary type="html">&lt;p&gt;Theeboris: /* Getting started */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Rednet is an API that allows computers and turtles interact with each other wirelessly.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
&lt;br /&gt;
* Attach a [[Modem|wireless modem]] to your [[Console|computer]].&lt;br /&gt;
{{Crafting grid&lt;br /&gt;
 |A1=stone |B1=stone           |C1=stone&lt;br /&gt;
 |A2=stone |B2=redstone_torch  |C2=stone&lt;br /&gt;
 |A3=stone |B3=stone           |C3=stone&lt;br /&gt;
 |Output=modem&lt;br /&gt;
 }}&lt;br /&gt;
&lt;br /&gt;
A modem is made using 8 stone blocks surrounding a redstone torch.&lt;br /&gt;
&lt;br /&gt;
== Rednet scripts ==&lt;br /&gt;
Rednet uses several methods to interact with other computers.&lt;br /&gt;
&lt;br /&gt;
Here is a basic program that runs most of them. It requires 2 PCs.&lt;br /&gt;
&lt;br /&gt;
PC1&lt;br /&gt;
 [[Rednet_(API)|rednet]].[[Rednet.open|open]](&amp;quot;right&amp;quot;) --enable the modem attached to the right side of the PC&lt;br /&gt;
 [[Rednet_(API)|rednet]].[[Rednet.broadcast|broadcast]](&amp;quot;Hello world&amp;quot;) --send &amp;quot;Hello world&amp;quot; over rednet to all PCs in range&lt;br /&gt;
 [[print]](&amp;quot;PC1 - Hello world&amp;quot;)&lt;br /&gt;
 id,message = [[Rednet_(API)|rednet]].[[Rednet.receive|receive]]() --wait until something is received over rednet&lt;br /&gt;
 if id == 2 and message == &amp;quot;Hello from pc2&amp;quot; then&lt;br /&gt;
  [[write]](&amp;quot;PC2 -&amp;quot;)&lt;br /&gt;
  [[print]](message)&lt;br /&gt;
  [[Rednet_(API)|rednet]].[[Rednet.send|send]](2,&amp;quot;How are you&amp;quot;) --Send a message only to the PC with ID 2&lt;br /&gt;
  [[print]](&amp;quot;PC1 - How are you&amp;quot;)&lt;br /&gt;
  id,message = [[Rednet_(API)|rednet]].[[Rednet.receive|receive]](10) --Wait until a message arrives or 10 seconds pass&lt;br /&gt;
  if message == &amp;quot;Fine thanks&amp;quot; then&lt;br /&gt;
   [[print]](&amp;quot;PC2 - Fine thanks&amp;quot;)&lt;br /&gt;
  end&lt;br /&gt;
 end&lt;br /&gt;
 [[print]](&amp;quot;disconnecting&amp;quot;)&lt;br /&gt;
 [[Rednet_(API)|rednet]].[[Rednet.close|close]](&amp;quot;right&amp;quot;) --disable modem on the right side of the PC&lt;br /&gt;
&lt;br /&gt;
PC2&lt;br /&gt;
 [[Rednet_(API)|rednet]].[[Rednet.open|open]](&amp;quot;right&amp;quot;) --enable modem on the right side of the PC&lt;br /&gt;
 id,message = [[Rednet_(API)|rednet]].[[Rednet.receive|receive]]() --wait until a mesage is received&lt;br /&gt;
 if id == 1 and message == &amp;quot;Hello world&amp;quot; then&lt;br /&gt;
  [[Rednet_(API)|rednet]].[[Rednet.send|send]](1,&amp;quot;Hello from pc2&amp;quot;) -- send a message to only the PC with ID 1&lt;br /&gt;
  id,message = [[Rednet_(API)|rednet]].[[Rednet.receive|receive]]() -- Wait until a message is received&lt;br /&gt;
  if message == &amp;quot;How are you&amp;quot; then&lt;br /&gt;
   [[Rednet_(API)|rednet]].[[Rednet.broadcast|broadcast]](&amp;quot;Fine thanks&amp;quot;) -- Send to all PCs in range&lt;br /&gt;
  end&lt;br /&gt;
 end&lt;br /&gt;
 [[Rednet_(API)|rednet]].[[Rednet.close|close]](&amp;quot;right&amp;quot;) -- disable modem on the right side of the PC&lt;br /&gt;
&lt;br /&gt;
Open PC2 first after that open PC1 and then run the program&lt;/div&gt;</summary>
		<author><name>Theeboris</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Rednet_Tutorial&amp;diff=3634</id>
		<title>Rednet Tutorial</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Rednet_Tutorial&amp;diff=3634"/>
				<updated>2012-11-06T03:46:04Z</updated>
		
		<summary type="html">&lt;p&gt;Theeboris: /* Getting started */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Rednet is an API that allows computers and turtles interact with each other wirelessly.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
&lt;br /&gt;
* Attach a [[Modem|wireless modem]] to your [[Console|computer]].&lt;br /&gt;
{{Crafting grid&lt;br /&gt;
 |A1=stone |B1=stone           |C1=stone&lt;br /&gt;
 |A2=stone |B2=redstone_torch  |C2=stone&lt;br /&gt;
 |A3=stone |B3=stone           |C3=stone&lt;br /&gt;
 |Output=console&lt;br /&gt;
 }}&lt;br /&gt;
&lt;br /&gt;
A modem is made using 8 stone blocks surrounding a redstone torch.&lt;br /&gt;
&lt;br /&gt;
== Rednet scripts ==&lt;br /&gt;
Rednet uses several methods to interact with other computers.&lt;br /&gt;
&lt;br /&gt;
Here is a basic program that runs most of them. It requires 2 PCs.&lt;br /&gt;
&lt;br /&gt;
PC1&lt;br /&gt;
 [[Rednet_(API)|rednet]].[[Rednet.open|open]](&amp;quot;right&amp;quot;) --enable the modem attached to the right side of the PC&lt;br /&gt;
 [[Rednet_(API)|rednet]].[[Rednet.broadcast|broadcast]](&amp;quot;Hello world&amp;quot;) --send &amp;quot;Hello world&amp;quot; over rednet to all PCs in range&lt;br /&gt;
 [[print]](&amp;quot;PC1 - Hello world&amp;quot;)&lt;br /&gt;
 id,message = [[Rednet_(API)|rednet]].[[Rednet.receive|receive]]() --wait until something is received over rednet&lt;br /&gt;
 if id == 2 and message == &amp;quot;Hello from pc2&amp;quot; then&lt;br /&gt;
  [[write]](&amp;quot;PC2 -&amp;quot;)&lt;br /&gt;
  [[print]](message)&lt;br /&gt;
  [[Rednet_(API)|rednet]].[[Rednet.send|send]](2,&amp;quot;How are you&amp;quot;) --Send a message only to the PC with ID 2&lt;br /&gt;
  [[print]](&amp;quot;PC1 - How are you&amp;quot;)&lt;br /&gt;
  id,message = [[Rednet_(API)|rednet]].[[Rednet.receive|receive]](10) --Wait until a message arrives or 10 seconds pass&lt;br /&gt;
  if message == &amp;quot;Fine thanks&amp;quot; then&lt;br /&gt;
   [[print]](&amp;quot;PC2 - Fine thanks&amp;quot;)&lt;br /&gt;
  end&lt;br /&gt;
 end&lt;br /&gt;
 [[print]](&amp;quot;disconnecting&amp;quot;)&lt;br /&gt;
 [[Rednet_(API)|rednet]].[[Rednet.close|close]](&amp;quot;right&amp;quot;) --disable modem on the right side of the PC&lt;br /&gt;
&lt;br /&gt;
PC2&lt;br /&gt;
 [[Rednet_(API)|rednet]].[[Rednet.open|open]](&amp;quot;right&amp;quot;) --enable modem on the right side of the PC&lt;br /&gt;
 id,message = [[Rednet_(API)|rednet]].[[Rednet.receive|receive]]() --wait until a mesage is received&lt;br /&gt;
 if id == 1 and message == &amp;quot;Hello world&amp;quot; then&lt;br /&gt;
  [[Rednet_(API)|rednet]].[[Rednet.send|send]](1,&amp;quot;Hello from pc2&amp;quot;) -- send a message to only the PC with ID 1&lt;br /&gt;
  id,message = [[Rednet_(API)|rednet]].[[Rednet.receive|receive]]() -- Wait until a message is received&lt;br /&gt;
  if message == &amp;quot;How are you&amp;quot; then&lt;br /&gt;
   [[Rednet_(API)|rednet]].[[Rednet.broadcast|broadcast]](&amp;quot;Fine thanks&amp;quot;) -- Send to all PCs in range&lt;br /&gt;
  end&lt;br /&gt;
 end&lt;br /&gt;
 [[Rednet_(API)|rednet]].[[Rednet.close|close]](&amp;quot;right&amp;quot;) -- disable modem on the right side of the PC&lt;br /&gt;
&lt;br /&gt;
Open PC2 first after that open PC1 and then run the program&lt;/div&gt;</summary>
		<author><name>Theeboris</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Paint&amp;diff=3552</id>
		<title>Paint</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Paint&amp;diff=3552"/>
				<updated>2012-10-28T20:27:26Z</updated>
		
		<summary type="html">&lt;p&gt;Theeboris: Created page with &amp;quot;An advanced computer running Paint, an exclusive program  Paint  is a program that only runs on advanced computers. You can pain...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:AdvancedComputerPaint.png|frame|right|An advanced computer running Paint, an exclusive program]]&lt;br /&gt;
&lt;br /&gt;
Paint  is a program that only runs on advanced computers. You can paint pictures with  it.&lt;/div&gt;</summary>
		<author><name>Theeboris</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Advanced_Computer&amp;diff=3456</id>
		<title>Advanced Computer</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Advanced_Computer&amp;diff=3456"/>
				<updated>2012-10-21T17:34:59Z</updated>
		
		<summary type="html">&lt;p&gt;Theeboris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:AdvancedComputerPaint.png|frame|right|Paint]]The advanced computer is a [[computer]] that have mouse and colour API support. They may have more exclusive features soon. They resemble the traditional computer console, but are golden coloured to match their crafting [[recipes|recipe]].&lt;br /&gt;
==Recipe==&lt;br /&gt;
{{Crafting grid&lt;br /&gt;
 |A1=gold_ingot |B1=gold_ingot    |C1=gold_ingot&lt;br /&gt;
 |A2=gold_ingot |B2=redstone_dust |C2=gold_ingot&lt;br /&gt;
 |A3=gold_ingot |B3=glass_pane    |C3=gold_ingot&lt;br /&gt;
 |Output=advanced_console&lt;br /&gt;
 }}&lt;br /&gt;
==Exclusive Code==&lt;br /&gt;
* term.setTextColour()&lt;br /&gt;
* term.setBackgroundColour()&lt;br /&gt;
[[Category:Blocks]]&lt;br /&gt;
[[Category:Consoles]]&lt;br /&gt;
==History==&lt;br /&gt;
*1.45 PR1 - Added Advanced Computers&lt;br /&gt;
*1.45 PR3 - Changed around the mouse function&lt;/div&gt;</summary>
		<author><name>Theeboris</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=File:AdvancedComputerPaint.png&amp;diff=3455</id>
		<title>File:AdvancedComputerPaint.png</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=File:AdvancedComputerPaint.png&amp;diff=3455"/>
				<updated>2012-10-21T17:34:50Z</updated>
		
		<summary type="html">&lt;p&gt;Theeboris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Theeboris</name></author>	</entry>

	</feed>