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

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Printed_Page&amp;diff=7295</id>
		<title>Printed Page</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Printed_Page&amp;diff=7295"/>
				<updated>2015-10-25T15:07:28Z</updated>
		
		<summary type="html">&lt;p&gt;Wyvern67: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Block&lt;br /&gt;
|name=Printed Page&lt;br /&gt;
|image=Grid Page.png&lt;br /&gt;
|id=&lt;br /&gt;
|damage-value=&lt;br /&gt;
|is-peripheral=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:PrintedPage.png|thumb|Viewing a printed page]]&lt;br /&gt;
&lt;br /&gt;
The printed page is an item which is created with the [[printer]]. The contents of the page can be viewed by right clicking with it on the hotbar. Two or more can be crafted together with a string to create [[Printed Pages|printed pages]], or crafted together with a string and a piece of leather to create a [[printed book]].&lt;br /&gt;
&lt;br /&gt;
Printed pages are 25 characters wide and 21 characters tall.&lt;br /&gt;
&lt;br /&gt;
Printed Page can't be read by computers. If you want to save a program, use a [[Floppy Disk]] instead.&lt;br /&gt;
&lt;br /&gt;
{{BlocksItemsList}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Items]]&lt;/div&gt;</summary>
		<author><name>Wyvern67</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Printed_Page&amp;diff=7294</id>
		<title>Printed Page</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Printed_Page&amp;diff=7294"/>
				<updated>2015-10-25T15:07:17Z</updated>
		
		<summary type="html">&lt;p&gt;Wyvern67: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Block&lt;br /&gt;
|name=Printed Page&lt;br /&gt;
|image=Grid Page.png&lt;br /&gt;
|id=&lt;br /&gt;
|damage-value=&lt;br /&gt;
|is-peripheral=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:PrintedPage.png|thumb|Viewing a printed page]]&lt;br /&gt;
&lt;br /&gt;
The printed page is an item which is created with the [[printer]]. The contents of the page can be viewed by right clicking with it on the hotbar. Two or more can be crafted together with a string to create [[Printed Pages|printed pages]], or crafted together with a string and a piece of leather to create a [[printed book]].&lt;br /&gt;
&lt;br /&gt;
Printed pages are 25 characters wide and 21 cjaracters tall.&lt;br /&gt;
&lt;br /&gt;
Printed Page can't be read by computers. If you want to save a program, use a [[Floppy Disk]] instead.&lt;br /&gt;
&lt;br /&gt;
{{BlocksItemsList}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Items]]&lt;/div&gt;</summary>
		<author><name>Wyvern67</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Peripheral.find&amp;diff=7172</id>
		<title>Peripheral.find</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Peripheral.find&amp;diff=7172"/>
				<updated>2015-08-01T15:24:20Z</updated>
		
		<summary type="html">&lt;p&gt;Wyvern67: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=peripheral.find&lt;br /&gt;
|args={{type|string}} type [, {{type|function}} fnFilter( name, object )]&lt;br /&gt;
|returns={{Type|table}} handle1, {{Type|table}} handle2, ... handles to peripherals of the given type&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Introduced by ComputerCraft 1.6, returns a list of handles for connected peripherals that match the supplied type (essentially performing as a filtered version of [[peripheral.wrap|peripheral.wrap()]]).&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A custom function may additionally be passed as a parameter - if it's supplied, each matching peripheral's name and handle will be passed to it during the search, and they'll only be included in the final results if it returns &amp;quot;true&amp;quot;.&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Finds a monitor and writes 'Hello' on it.&lt;br /&gt;
|code= local monitor = '''peripheral.find(&amp;quot;monitor&amp;quot;)'''&lt;br /&gt;
 &lt;br /&gt;
 if monitor then&lt;br /&gt;
   monitor.[[term.write|write]](&amp;quot;Hello&amp;quot;)&lt;br /&gt;
 end&lt;br /&gt;
|output=If there is a monitor connected 'Hello' will be written on it.&lt;br /&gt;
}}&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Finds 2 '''advanced''' monitors and writes 'Hello' on the first and 'World' on the second. &lt;br /&gt;
|code= local mon1, mon2 = '''peripheral.find(&amp;quot;monitor&amp;quot;, function(name, object) return object.isColour() end)'''&lt;br /&gt;
 &lt;br /&gt;
 if mon1 then&lt;br /&gt;
   mon1.[[term.setTextColor|setTextColour]]([[colors|colours]].blue)&lt;br /&gt;
   mon1.[[term.write|write]](&amp;quot;Hello&amp;quot;)&lt;br /&gt;
 end&lt;br /&gt;
 if mon2 then&lt;br /&gt;
   mon2.[[term.setTextColor|setTextColour]]([[colors|colours]].red)&lt;br /&gt;
   mon2.[[term.write|write]](&amp;quot;World&amp;quot;)&lt;br /&gt;
 end&lt;br /&gt;
|output=If it finds 1 advanced monitor, 'Hello' will be written on it. If it finds 2 advanced monitors, 'Hello' will be written on the first and 'World' on the second.&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=If six monitors were to be attached to a computer, peripheral.find(&amp;quot;monitor&amp;quot;) would return their handles in that order: Bottom, top, back, front, right and left.&lt;br /&gt;
That order always stays the same. The bottom peripheral will always have the priority and be returned first.&lt;br /&gt;
peripheral.getNames() follows the same return pattern. It could be used to find out the order in which the peripheral handles will be returned when using peripheral.find(). &lt;br /&gt;
|code= local bottomMonitor, topMonitor, backMonitor, frontMonitor, rightMonitor, leftMonitor = '''peripheral.find(&amp;quot;monitor&amp;quot;)'''&lt;br /&gt;
 textutils.tabulate(peripheral.getNames())&lt;br /&gt;
 &lt;br /&gt;
|output= Will print the string 'bottom top    back   front  right  left' on the terminal.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua_Core_Functions]]&lt;/div&gt;</summary>
		<author><name>Wyvern67</name></author>	</entry>

	</feed>