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

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Peripheral.call&amp;diff=2949</id>
		<title>Peripheral.call</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Peripheral.call&amp;diff=2949"/>
				<updated>2012-09-17T20:43:27Z</updated>
		
		<summary type="html">&lt;p&gt;KillaVanilla: Added page for peripheral.call()&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=peripheral.call&lt;br /&gt;
|args= [[string (type)|(string)]] side, [[string (type)|(string)]] methodName, arguments&lt;br /&gt;
|returns=Depends on the method called.&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Calls a method on the peripheral attached to ''side''.&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Clears the screen of any monitor attached to the right side of a computer/turtle.&lt;br /&gt;
|code=peripheral.call(&amp;quot;right&amp;quot;, &amp;quot;clear&amp;quot;)&lt;br /&gt;
|output=Clears the screen of any monitor attached to the right side of a computer/turtle.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>KillaVanilla</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Peripheral.getMethods&amp;diff=2948</id>
		<title>Peripheral.getMethods</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Peripheral.getMethods&amp;diff=2948"/>
				<updated>2012-09-17T20:41:01Z</updated>
		
		<summary type="html">&lt;p&gt;KillaVanilla: Added page for peripheral.getMethods()&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=peripheral.getMethods&lt;br /&gt;
|args= [[string (type)|(string)]] side&lt;br /&gt;
|returns=A table with all available methods for the peripheral on ''side''.&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Returns a table with all available methods for the peripheral on ''side''.&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Prints all of the available methods for the peripheral on the right side of the computer/turtle.&lt;br /&gt;
|code=for i,v in ipairs(peripheral.getMethods(&amp;quot;right&amp;quot;)) do print(i..&amp;quot;. &amp;quot;..v) end&lt;br /&gt;
|output=Depends on whatever is attached to the right hand side of the computer; there is a list on the page for the [[Peripheral (API)|peripheral API]].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>KillaVanilla</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Peripheral.wrap&amp;diff=2947</id>
		<title>Peripheral.wrap</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Peripheral.wrap&amp;diff=2947"/>
				<updated>2012-09-17T20:35:34Z</updated>
		
		<summary type="html">&lt;p&gt;KillaVanilla: Added page for peripheral.wrap()&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=peripheral.wrap&lt;br /&gt;
|args= [[string (type)|(string)]] side&lt;br /&gt;
|returns=A handle to the peripheral on ''side''.&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Returns a handle to a peripheral that can then be used to call methods, as if using peripheral.call(side, method)&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Prints what has been attached to the computer or turtle's right side.&lt;br /&gt;
|code=local handle = peripheral.wrap(&amp;quot;right&amp;quot;) handle.shutdown()&lt;br /&gt;
|output=Shuts down any computer to the right of the computer/turtle.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>KillaVanilla</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Peripheral.getType&amp;diff=2946</id>
		<title>Peripheral.getType</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Peripheral.getType&amp;diff=2946"/>
				<updated>2012-09-17T20:30:11Z</updated>
		
		<summary type="html">&lt;p&gt;KillaVanilla: Added page for peripheral.getType&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=peripheral.isPresent&lt;br /&gt;
|args= [[string (type)|(string)]] side&lt;br /&gt;
|returns=[[string (type)|(string)]] the type of peripheral that is present on ''side'', or ''nil'' if nothing was found.&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Tells you what is attached to a side of a computer.&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Prints what has been attached to the computer or turtle's right side.&lt;br /&gt;
|code=print(peripheral.getType(&amp;quot;right&amp;quot;))&lt;br /&gt;
|output=Either &amp;quot;[[modem]]&amp;quot;, &amp;quot;[[computer]]&amp;quot;, &amp;quot;[[turtle]]&amp;quot;, &amp;quot;[[Disk Drive|drive]]&amp;quot;, or nil if nothing was detected on the computer's right side.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>KillaVanilla</name></author>	</entry>

	</feed>