<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Invisiprim</title>
	<atom:link href="http://totemgufler.wordpress.com/2008/03/26/invisiprim/feed/" rel="self" type="application/rss+xml" />
	<link>http://totemgufler.wordpress.com/2008/03/26/invisiprim/</link>
	<description>First Hand Reports From TSL</description>
	<lastBuildDate>Thu, 10 Sep 2009 13:19:14 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: totemgufler</title>
		<link>http://totemgufler.wordpress.com/2008/03/26/invisiprim/#comment-55</link>
		<dc:creator>totemgufler</dc:creator>
		<pubDate>Mon, 21 Jul 2008 17:36:39 +0000</pubDate>
		<guid isPermaLink="false">http://totemgufler.wordpress.com/?p=24#comment-55</guid>
		<description>Alright, that is fairly straight forward. To listen on a different channel, you just change the first argument of the llListen() funtion. For example, you can listen on channel 11 by changing llListen(0,&quot;&quot;, owner, &quot;&quot;) to llListen(11,&quot;&quot;, owner, &quot;&quot;).

As to the re-cloaking, you&#039;re right, there is nothing in the script right now to do that. But here is a modified version of the script that does:

///////Created by Joker Opus, November 8th//////
//Feel free to mod this, do not steal//

default
{
state_entry()
{
key owner = llGetOwner();
llListen(0,”&quot;,owner,”&quot;);
llSetTexture(”38b86f85-2575-52a9-a531-23108d8da837″, ALL_SIDES);
llSetTexture(”e97cf410-8e61-7005-ec06-629eba4cd1fb”, ALL_SIDES);                     //This is all the textures and functions that formulate the invisiprim
llSetPrimitiveParams([PRIM_BUMP_SHINY, ALL_SIDES, PRIM_SHINY_NONE, PRIM_BUMP_BRIGHT]);
llOffsetTexture(0.468, 0.0, ALL_SIDES);
llScaleTexture(0.0, 0.0, ALL_SIDES);
llSetAlpha(1.0, ALL_SIDES);
llSetTimerEvent(5);
}
listen(integer channel, string name, key id, string msg)
{
if( msg == “uncloak” )
{                                          //When you say uncloak, it will go back to a non-invisiprim.
llSetTexture(”4c1ce202-4196-f1c1-0409-367b3a71543e”, ALL_SIDES);
}
if(msg == &quot;recloak&quot; )
{
llResetScript();
}
}
}</description>
		<content:encoded><![CDATA[<p>Alright, that is fairly straight forward. To listen on a different channel, you just change the first argument of the llListen() funtion. For example, you can listen on channel 11 by changing llListen(0,&#8221;", owner, &#8220;&#8221;) to llListen(11,&#8221;", owner, &#8220;&#8221;).</p>
<p>As to the re-cloaking, you&#8217;re right, there is nothing in the script right now to do that. But here is a modified version of the script that does:</p>
<p>///////Created by Joker Opus, November 8th//////<br />
//Feel free to mod this, do not steal//</p>
<p>default<br />
{<br />
state_entry()<br />
{<br />
key owner = llGetOwner();<br />
llListen(0,”&#8221;,owner,”&#8221;);<br />
llSetTexture(”38b86f85-2575-52a9-a531-23108d8da837″, ALL_SIDES);<br />
llSetTexture(”e97cf410-8e61-7005-ec06-629eba4cd1fb”, ALL_SIDES);                     //This is all the textures and functions that formulate the invisiprim<br />
llSetPrimitiveParams([PRIM_BUMP_SHINY, ALL_SIDES, PRIM_SHINY_NONE, PRIM_BUMP_BRIGHT]);<br />
llOffsetTexture(0.468, 0.0, ALL_SIDES);<br />
llScaleTexture(0.0, 0.0, ALL_SIDES);<br />
llSetAlpha(1.0, ALL_SIDES);<br />
llSetTimerEvent(5);<br />
}<br />
listen(integer channel, string name, key id, string msg)<br />
{<br />
if( msg == “uncloak” )<br />
{                                          //When you say uncloak, it will go back to a non-invisiprim.<br />
llSetTexture(”4c1ce202-4196-f1c1-0409-367b3a71543e”, ALL_SIDES);<br />
}<br />
if(msg == &#8220;recloak&#8221; )<br />
{<br />
llResetScript();<br />
}<br />
}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl</title>
		<link>http://totemgufler.wordpress.com/2008/03/26/invisiprim/#comment-54</link>
		<dc:creator>Karl</dc:creator>
		<pubDate>Mon, 21 Jul 2008 10:45:10 +0000</pubDate>
		<guid isPermaLink="false">http://totemgufler.wordpress.com/?p=24#comment-54</guid>
		<description>OK I am a complete novice when it comes to scripting, and I have 2 questions about this - First, I see that it&#039;s listening, presumably on Channel 0, for the uncloak command.
How do I modify this script to listen on a different channel? Where do I put the numbers in?  And second, if it uncloaks, how do you re-cloak it again? I don&#039;t see anything in the script that might do that.</description>
		<content:encoded><![CDATA[<p>OK I am a complete novice when it comes to scripting, and I have 2 questions about this &#8211; First, I see that it&#8217;s listening, presumably on Channel 0, for the uncloak command.<br />
How do I modify this script to listen on a different channel? Where do I put the numbers in?  And second, if it uncloaks, how do you re-cloak it again? I don&#8217;t see anything in the script that might do that.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
