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

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Boolean_(type)&amp;diff=5301</id>
		<title>Boolean (type)</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Boolean_(type)&amp;diff=5301"/>
				<updated>2013-04-10T01:44:14Z</updated>
		
		<summary type="html">&lt;p&gt;Shuudoushi: fixed some wording and removed some un-needed bits&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''Boolean value''' (or more commonly, &amp;quot;boolean&amp;quot;) represents either a &amp;quot;true&amp;quot; or &amp;quot;false&amp;quot; value. A boolean value is not capable of holding any other data, such as ([[Int_(type)|integers]], [[Float_(type)|floating-point numbers]] and [[string (type)|strings]]) and is usually used by functions to state whether the function was successful. &lt;br /&gt;
&lt;br /&gt;
Boolean values can be used in logic statements (as conditionals), and can also be expressed as binary, where &amp;lt;var&amp;gt;true&amp;lt;/var&amp;gt; is a value of &amp;lt;var&amp;gt;1&amp;lt;/var&amp;gt; and &amp;lt;var&amp;gt;false&amp;lt;/var&amp;gt; is a value of &amp;lt;var&amp;gt;0&amp;lt;/var&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
For a more in-depth and concise explanation of types, please consolidate with the [http://www.lua.org/manual/5.1/manual.html Lua 5.1 Official Manual].&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua_Types]]&lt;/div&gt;</summary>
		<author><name>Shuudoushi</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Wired_Modem&amp;diff=5300</id>
		<title>Wired Modem</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Wired_Modem&amp;diff=5300"/>
				<updated>2013-04-10T00:41:03Z</updated>
		
		<summary type="html">&lt;p&gt;Shuudoushi: fixed some wording and removed some un-needed bits&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{NeedsWork|Needs correction and more examples -alekso56)}}&lt;br /&gt;
:''This page is for the Modem blocks. For the modem API, see [[Modem_(API)|Modem (API)]]''&lt;br /&gt;
{{Block&lt;br /&gt;
|name=Cable Modem&lt;br /&gt;
|image=&lt;br /&gt;
|id=???&lt;br /&gt;
|damage-value= ???&lt;br /&gt;
|is-peripheral=Yes&lt;br /&gt;
|peripheral-api=Modem (API)&lt;br /&gt;
}}&lt;br /&gt;
Modems are blocks which can be used to transfer data between [[Computer|computers]], using the [[Rednet_(API)|Rednet API]] or the [[Modem_(API)|Modem API]].&lt;br /&gt;
To place a modem on a side of a computer, right-click to place the modem while sneaking. &lt;br /&gt;
To use the modems, you need to connect the modems to each other by placing cables.&lt;br /&gt;
==Recipes== &lt;br /&gt;
&lt;br /&gt;
{{Crafting grid&lt;br /&gt;
 |          B1=Stone    &lt;br /&gt;
 |A2=Stone |B2=Redstone       |C2=Stone&lt;br /&gt;
           |B3=Stone      &lt;br /&gt;
 |Output=Networking_Cable&lt;br /&gt;
 |OA=6}}&lt;br /&gt;
{{Crafting grid&lt;br /&gt;
 |A1=stone |B1=stone          |C1=stone&lt;br /&gt;
 |A2=stone |B2=Redstone    |C2=stone&lt;br /&gt;
 |A3=stone |B3=stone          |C3=stone&lt;br /&gt;
 |Output=Wired_Modem&lt;br /&gt;
 }}&lt;br /&gt;
&lt;br /&gt;
== Example (Rednet API)==&lt;br /&gt;
* Place 2 computers and add modems to them by clicking the right mouse button while sneaking.&lt;br /&gt;
* Access them, and start Lua.&lt;br /&gt;
* Once Lua has started, type &amp;quot;[[rednet_(API)|rednet]].[[rednet.open|open]] (&amp;quot;&amp;lt;relative location to modem, e.g. left, right&amp;gt;&amp;quot;)&amp;quot; on both computers.&lt;br /&gt;
* Check if there exists a connection: a dim, red ring should be found around the modem, closest to the computer/peripheral it is connected to.&lt;br /&gt;
* Type on one computer &amp;quot;[[rednet_(API)|rednet]].[[rednet.receive|receive]] (60)&amp;quot;. This will make the computer freeze for 60 seconds, or until it has received a signal from the other computer(s).&lt;br /&gt;
* Now, type &amp;quot;[[rednet_(API)|rednet]].[[rednet.broadcast|broadcast]] ('&amp;lt;your message&amp;gt;')&amp;quot; on the other computer. This should send your message to all computers connected.&lt;br /&gt;
* Opening the first computer should show the message written on the second computer.&lt;br /&gt;
&lt;br /&gt;
== Example 2 (Modem and peripheral) ==&lt;br /&gt;
* If you want to use a modem to communicate with a peripheral you might want to take a look at the [[Peripheral_(API)##Remote_Peripherals_using_Networking_Cables|Peripheral API]]&lt;br /&gt;
&lt;br /&gt;
==Modem as a Peripheral==&lt;br /&gt;
To use a Modem as a peripheral, you need to either call a method directly using [[peripheral.call]](), or wrap the modem using the [[Peripheral_(API)|Peripheral API]]. Wrapped modems provide all functions listed in the [[Rednet_(API)|Rednet API]].&lt;br /&gt;
&lt;br /&gt;
For this example, we have a Modem connected to the top of our [[Computer]]:&lt;br /&gt;
&lt;br /&gt;
 -- Immediately invoke a method without wrapping&lt;br /&gt;
 peripheral.call(&amp;quot;top&amp;quot;, &amp;quot;open&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
 -- You can also &amp;quot;wrap&amp;quot; the peripheral side to a variable:&lt;br /&gt;
 local modem = peripheral.wrap(&amp;quot;top&amp;quot;)&lt;br /&gt;
 modem.open(&amp;quot;top&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
[[Category:Peripherals]]&lt;/div&gt;</summary>
		<author><name>Shuudoushi</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Wiki_Todo&amp;diff=5299</id>
		<title>Wiki Todo</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Wiki_Todo&amp;diff=5299"/>
				<updated>2013-04-10T00:34:35Z</updated>
		
		<summary type="html">&lt;p&gt;Shuudoushi: Minor spelling fixes.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;padding-left: 8px; float: right&amp;quot;&amp;gt;{{List of Administrators}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;span style='font-size: 132%; font-weight:bold;'&amp;gt;This page lists where work is needed to be done on the wiki. If you would like to help, we ask that you please make an account and help wherever you can.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''If you need to contact an Administrator, please visit an admin's userpage, and leave a note on their talk page.''&lt;br /&gt;
&lt;br /&gt;
'''If you make a change here, please give us as much detail as you can, and sign the end of your change using four tildes, like so: &amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt;. This allows us to get back to you if we need more information.'''&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Missing &amp;amp; NeedsWork Pages ==&lt;br /&gt;
* The [[:Category:Pages_Needing_Changes|Pages Needing Changes]] list shows all the pages that have been tagged with &amp;lt;nowiki&amp;gt;{{NeedsWork}}&amp;lt;/nowiki&amp;gt; or &amp;lt;nowiki&amp;gt;{{Stub}}&amp;lt;/nowiki&amp;gt;. These pages either need more information, to be tidied, re-worded or adjusted, or just needs some TLC.&lt;br /&gt;
* The [[Special:WantedPages| Wanted Pages]] list shows all the pages that are missing (have been linked to, but aren't there). You should first check that the page being requested doesn't already exist (in case the person misspelled the page) and then, if you're feeling adventurous, put together a page. You can always come back, or tag the page with a &amp;lt;nowiki&amp;gt;{{NeedsWork}}&amp;lt;/nowiki&amp;gt; or a &amp;lt;nowiki&amp;gt;{{Stub}}&amp;lt;/nowiki&amp;gt; tag. If you need help, ask us! We don't bite. &lt;br /&gt;
&lt;br /&gt;
== Additional Tasks ==&lt;br /&gt;
*[[Textutils_(API)|Textutils]] (Needs &amp;lt;s&amp;gt;5&amp;lt;/s&amp;gt; 3 function pages, &amp;lt;s&amp;gt;2&amp;lt;/s&amp;gt; 1 function description)&lt;br /&gt;
*[[Vector_(API)|Vector]] &amp;lt;s&amp;gt;(Needs link to page explaining or description explaining what a vector is and function pages)&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;It now has a link to Wikipedia, but it doesn't use any of the method or example templates. Can we get this rectified? ''[[User:AfterLifeLochie|AfterLifeLochie]] 02:14, 29 November 2012 (MSK)''&amp;lt;/s&amp;gt;&lt;br /&gt;
** Now has pages to every function in a standard template.  May need to double check work for any broken links or missing pages.  Examples and descriptions probably need work. ''[[User:MafiaMoe|MafiaMoe]] 18:38, 23 February 2013 (MSK)''&lt;br /&gt;
*[[Paintutils_(API)|Paintutils]] (Needs 3 function pages)&lt;br /&gt;
** It also doesn't use any of the methods or example templates. Can we get this rectified? ''[[User:AfterLifeLochie|AfterLifeLochie]] 02:14, 29 November 2012 (MSK)''&lt;br /&gt;
* Some links don't link to their correct pages, resulting in page duplication and wasting time deleting pages. Can sometimes be found in the [[Special:WantedPages| Wanted Pages.]]&lt;br /&gt;
&lt;br /&gt;
== Wiki Admin Things ==&lt;br /&gt;
=== General Wiki Stuff ===&lt;br /&gt;
* &amp;lt;s&amp;gt;Random Links, such as mining_turtle via image links, any chance of removing them? &amp;lt;/s&amp;gt;&lt;br /&gt;
** Uh, no. They're generated through templates doing weird things, and fixing them is a real pain (template re factorization, renaming files, etc). I have fixed some but not all. ''[[User:AfterLifeLochie|AfterLifeLochie]] 16:46, 29 December 2012 (MSK)''&lt;br /&gt;
[[Category:Lists]]&lt;/div&gt;</summary>
		<author><name>Shuudoushi</name></author>	</entry>

	</feed>