<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=EdsonMG+Anthony</id>
	<title>Second Life Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=EdsonMG+Anthony"/>
	<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/wiki/Special:Contributions/EdsonMG_Anthony"/>
	<updated>2026-06-20T08:24:12Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=1145509</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=1145509"/>
		<updated>2011-06-06T22:44:19Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: /* MY FIRST POST */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
Visit my blog: [http://adf.ly/1hyIc conteudogeek.blogspot.com]&lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () &lt;br /&gt;
// This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start event will be triggered when you touch an object, means that when you touch a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
Aqui você pode aprender seu primeiro script em LSL, clique no link e aproveite, é o mesmo script de cima em Português.&lt;br /&gt;
&lt;br /&gt;
[[Seu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
The first hints of building in SL, you&#039;ll learn a little about how to create the first prims.&lt;br /&gt;
&lt;br /&gt;
[[Build hints]]&lt;br /&gt;
&lt;br /&gt;
Primeiras dicas de construção no SL, você irá aprender um pouco sobre como criar os primeiros prims.&lt;br /&gt;
&lt;br /&gt;
[[Dicas de construção]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=1145508</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=1145508"/>
		<updated>2011-06-06T22:41:27Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: /* MY FIRST POST */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
Visit my blog: [http://adf.ly/1hyIc]&lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () &lt;br /&gt;
// This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start event will be triggered when you touch an object, means that when you touch a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
Aqui você pode aprender seu primeiro script em LSL, clique no link e aproveite, é o mesmo script de cima em Português.&lt;br /&gt;
&lt;br /&gt;
[[Seu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
The first hints of building in SL, you&#039;ll learn a little about how to create the first prims.&lt;br /&gt;
&lt;br /&gt;
[[Build hints]]&lt;br /&gt;
&lt;br /&gt;
Primeiras dicas de construção no SL, você irá aprender um pouco sobre como criar os primeiros prims.&lt;br /&gt;
&lt;br /&gt;
[[Dicas de construção]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=1145507</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=1145507"/>
		<updated>2011-06-06T22:40:24Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: /* MY FIRST POST */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
Visit my blog: [[http://adf.ly/1hyIc]]&lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () &lt;br /&gt;
// This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start event will be triggered when you touch an object, means that when you touch a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
Aqui você pode aprender seu primeiro script em LSL, clique no link e aproveite, é o mesmo script de cima em Português.&lt;br /&gt;
&lt;br /&gt;
[[Seu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
The first hints of building in SL, you&#039;ll learn a little about how to create the first prims.&lt;br /&gt;
&lt;br /&gt;
[[Build hints]]&lt;br /&gt;
&lt;br /&gt;
Primeiras dicas de construção no SL, você irá aprender um pouco sobre como criar os primeiros prims.&lt;br /&gt;
&lt;br /&gt;
[[Dicas de construção]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632872</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632872"/>
		<updated>2009-10-26T15:31:36Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () &lt;br /&gt;
// This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start event will be triggered when you touch an object, means that when you touch a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
Aqui você pode aprender seu primeiro script em LSL, clique no link e aproveite, é o mesmo script de cima em Português.&lt;br /&gt;
&lt;br /&gt;
[[Seu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
The first hints of building in SL, you&#039;ll learn a little about how to create the first prims.&lt;br /&gt;
&lt;br /&gt;
[[Build hints]]&lt;br /&gt;
&lt;br /&gt;
Primeiras dicas de construção no SL, você irá aprender um pouco sobre como criar os primeiros prims.&lt;br /&gt;
&lt;br /&gt;
[[Dicas de construção]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632822</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632822"/>
		<updated>2009-10-26T15:20:34Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () &lt;br /&gt;
// This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start event will be triggered when you touch an object, means that when you touch a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
Aqui você pode aprender seu primeiro script em LSL, clique no link e aproveite, é o mesmo script de cima em Português.&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
The first hints of building in SL, you&#039;ll learn a little about how to create the first prims.&lt;br /&gt;
&lt;br /&gt;
[[Build hints]]&lt;br /&gt;
&lt;br /&gt;
Primeiras dicas de construção no SL, você irá aprender um pouco sobre como criar os primeiros prims.&lt;br /&gt;
&lt;br /&gt;
[[Dicas de construção]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Dicas_de_constru%C3%A7%C3%A3o&amp;diff=632802</id>
		<title>Dicas de construção</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Dicas_de_constru%C3%A7%C3%A3o&amp;diff=632802"/>
		<updated>2009-10-26T15:19:28Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: Created page with &amp;#039;&amp;#039;&amp;#039;&amp;#039;INTRODUÇÃO&amp;#039;&amp;#039;&amp;#039;  Este post tem por finalidade capacitar os residentes do Second Life a construir quaisquer objetos similares aos do mundo real ou não (de acordo com o que voc...&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;INTRODUÇÃO&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Este post tem por finalidade capacitar os residentes do Second Life a construir quaisquer objetos similares aos do mundo real ou não (de acordo com o que você imaginar) através de prims (primitives). Vai abordar desde as questões mais básicas até os fundamentos mais sofisticados na construção de seus objetos.&lt;br /&gt;
&lt;br /&gt;
1 - Conceito de prim: &lt;br /&gt;
&lt;br /&gt;
São como se fossem as partes mais básicas de um objeto, por exemplo, um cubo, cilindro, cone, esfera e outros disponíveis nas ferramentas de criação do second life. Através da agregação (link), desses prims, é possível construir quase qualquer coisa no SL.&lt;br /&gt;
&lt;br /&gt;
2 - Conceito de texturas:&lt;br /&gt;
&lt;br /&gt;
Texturas são figuras que agregadas aos prims dão realismo aos mesmos fazendo com que esses pareçam reais, podem ser feitas através de programas especializados (photoshop), ou adquiridas no próprio Second Life em alguns sims.&lt;br /&gt;
&lt;br /&gt;
Um prim é criado na cor padrão de madeira, imagine então criar um carro que apresente aspecto de madeira ! Não teria realismo. Essa é a função de textura, poderia-mos por exemplo agregar a esse carro uma textura de pintura metálica o que proporcionaria o realismo desejado.&lt;br /&gt;
&lt;br /&gt;
3 - Criando o primeiro prim:&lt;br /&gt;
&lt;br /&gt;
Você tem no mínimo três formas para criar um prim, através do comando B com a janela de chat oculta, o que abrirá a caixa de ferramentas de criação, transformando seu cursor numa &amp;quot;varinha mágica&amp;quot;, clicando com o botão direito do mouse na land (somente lands onde são permitidas criações, verifique no ícone de criação na barra de menus, representado com um cubo e um sinal de proíbido onde não é permitido) , ou acessando o menu View -&amp;gt; Build.&lt;br /&gt;
&lt;br /&gt;
Entendendo a caixa de ferramentas: Próximo post. &lt;br /&gt;
&lt;br /&gt;
Críticas, sugestões, correçõs, por favor enviem MI para EdsonMG Anthony.&lt;br /&gt;
Saudações.&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632792</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632792"/>
		<updated>2009-10-26T15:17:52Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () &lt;br /&gt;
// This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start event will be triggered when you touch an object, means that when you touch a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
Aqui você pode aprender seu primeiro script em LSL, clique no link e aproveite, é o mesmo script de cima em Português.&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
The first hints of building in SL, you&#039;ll learn a little about the toolbox.&lt;br /&gt;
&lt;br /&gt;
[[Build hints]]&lt;br /&gt;
&lt;br /&gt;
Primeiras dicas de construção no SL, você irá aprender um pouco sobre a caixa de ferramentas.&lt;br /&gt;
&lt;br /&gt;
[[Dicas de construção]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Build_hints&amp;diff=632732</id>
		<title>Build hints</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Build_hints&amp;diff=632732"/>
		<updated>2009-10-26T15:04:05Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;INTRODUCTION&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
This post is intended to empower the residents of Second Life to build any objects similar to the real world or not (according to what you think) by prims (primitives). Will discuss issues ranging from the most basic fundamentals to the sophisticated construction of its objects.&lt;br /&gt;
&lt;br /&gt;
1 - Definition of prim: &lt;br /&gt;
&lt;br /&gt;
Are like the most basic parts of an object, for example, a cube, cylinder, cone, sphere and other available tools of creation of the second life. Through aggregation (link), these prims, you can build anything in SL.&lt;br /&gt;
&lt;br /&gt;
2 - Definition of textures: &lt;br /&gt;
&lt;br /&gt;
Textures are attached to the spinning prims give realism to them causing them to appear real, can be done through specialized programs (photoshop), or acquired in their Second Life in some sims. Be carefull with textures of other people.&lt;br /&gt;
&lt;br /&gt;
A prim is created in the default color of wood, lets imagine create a car which looks wooden! Would not realism. This is one of the functions of textures, could we for example add to this car a texture of metallic paint which would provide the realism desired. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3 - Creating the first prim: &lt;br /&gt;
&lt;br /&gt;
You have at least three ways to create a prim, by executing B and hides the chat window, which opens a box of tools for creating, transforming your cursor into a &amp;quot;magic wand&amp;quot;, clicking the right mouse button in the land (only lands where are allowed creations, check the icon to create the menu bar, represented with a cube and a sign of forbidden), or by accessing the View menu -&amp;gt; Build. &lt;br /&gt;
&lt;br /&gt;
Well, send me comments, suggestions or English corrections, wait for the next post.&lt;br /&gt;
Best Regards,&lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Build_hints&amp;diff=632702</id>
		<title>Build hints</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Build_hints&amp;diff=632702"/>
		<updated>2009-10-26T15:02:12Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: Created page with &amp;#039;INTRODUCTION   This post is intended to empower the residents of Second Life to build any objects similar to the real world or not (according to what you think) by prims (primiti...&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;INTRODUCTION &lt;br /&gt;
&lt;br /&gt;
This post is intended to empower the residents of Second Life to build any objects similar to the real world or not (according to what you think) by prims (primitives). Will discuss issues ranging from the most basic fundamentals to the sophisticated construction of its objects.&lt;br /&gt;
&lt;br /&gt;
1 - Definition of prim: &lt;br /&gt;
&lt;br /&gt;
Are like the most basic parts of an object, for example, a cube, cylinder, cone, sphere and other available tools of creation of the second life. Through aggregation (link), these prims, you can build anything in SL.&lt;br /&gt;
&lt;br /&gt;
2 - Definition of textures: &lt;br /&gt;
&lt;br /&gt;
Textures are attached to the spinning prims give realism to them causing them to appear real, can be done through specialized programs (photoshop), or acquired in their Second Life in some sims. Be carefull with textures of other people.&lt;br /&gt;
&lt;br /&gt;
A prim is created in the default color of wood, lets imagine create a car which looks wooden! Would not realism. This is one of the functions of textures, could we for example add to this car a texture of metallic paint which would provide the realism desired. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3 - Creating the first prim: &lt;br /&gt;
&lt;br /&gt;
You have at least three ways to create a prim, by executing B and hides the chat window, which opens a box of tools for creating, transforming your cursor into a &amp;quot;magic wand&amp;quot;, clicking the right mouse button in the land (only lands where are allowed creations, check the icon to create the menu bar, represented with a cube and a sign of forbidden), or by accessing the View menu -&amp;gt; Build. &lt;br /&gt;
&lt;br /&gt;
Well, send me comments, suggestions or English corrections, wait for the next post.&lt;br /&gt;
Best Regards,&lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632692</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632692"/>
		<updated>2009-10-26T14:53:56Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () &lt;br /&gt;
// This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start event will be triggered when you touch an object, means that when you touch a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
[[Build hints]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632682</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632682"/>
		<updated>2009-10-26T14:53:38Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () &lt;br /&gt;
// This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start event will be triggered when you touch an object, means that when you touch a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
[[Build hints]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632672</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632672"/>
		<updated>2009-10-26T14:53:21Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () &lt;br /&gt;
// This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start event will be triggered when you touch an object, means that when you touch a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
[[Build hints]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632662</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632662"/>
		<updated>2009-10-26T14:53:04Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () &lt;br /&gt;
// This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start event will be triggered when you touch an object, means that when you touch a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Build hints]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632652</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632652"/>
		<updated>2009-10-26T14:52:46Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () &lt;br /&gt;
// This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start event will be triggered when you touch an object, means that when you touch a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]\n&lt;br /&gt;
[[Build hints]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632642</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632642"/>
		<updated>2009-10-26T14:45:26Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () &lt;br /&gt;
// This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start event will be triggered when you touch an object, means that when you touch a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
[[Build hints]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Meu_primeiro_script_(Portugu%C3%AAs-Br)&amp;diff=632312</id>
		<title>Meu primeiro script (Português-Br)</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Meu_primeiro_script_(Portugu%C3%AAs-Br)&amp;diff=632312"/>
		<updated>2009-10-26T04:49:50Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Boa tarde leitores ! Nesse post mostrarei como iniciar em LSL fazendo seu primeiro script. Começaremos com uma criação simples, só para que vocês entendam facilmente como fazer. Primeiro teleporte-se para um Sandbox, ou para sua casa, ou para algum lugar onde poderá criar(verifique o ícone caixa com sinal de proíbido na barra de nomes do SL, acima da janela). Feito isso, clique ao solo para criar um prim qualquer. Verifique como fazer por este link: &lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ao criar o objeto, clique com o botão direito do mouse no mesmo, e em editar(edit), pronto, você visualizará a caixa de ferramentas. Nela existem várias guias, a que abordaremos nesse post é a guia conteúdo(contents). É nesta guia colocaremos os conteúdos dos prims ou objetos, e os scripts que farão com que os objetos funcionem, no Second Life. Bem, vamos aos scripts. Reparem que há um botão novo, clique no mesmo. Automaticamente, será criado um script chamado new script, você também pode criar scripts pelo inventário e arrasta-lo para a guia conteúdo de qualquer objeto. Cliquem duas vezes no &amp;quot;New Script&amp;quot;, e perceberá que já existem algumas linhas de código prontas, isso é padrão do SL, para que se torne um pouco autoexplicativo. &lt;br /&gt;
&lt;br /&gt;
Ex: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;lsl&amp;gt;default  //Esta é a estrutura básica de todos os scripts, todos tem a estrutura default(padrão) &lt;br /&gt;
&lt;br /&gt;
{ &lt;br /&gt;
//Chaves: São delimitadores de blocos de programação, todos os blocos devem ser abertos { e fechados }...&lt;br /&gt;
   state_entry()  &lt;br /&gt;
//Este evento representa  o estado inicial de cada estrutura, vai ser disparado ao se entrar na estrutura acima (default)&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
  llSay(0, &amp;quot;Olá, Avatar !&amp;quot;); &lt;br /&gt;
//llSay é uma função predefinida do SL, recebe parâmetros (0, &amp;quot;Olá, Avatar!&amp;quot;), para que realize açóes, no caso dessa, ela fala no canal geral de chat (0), a mensagem &amp;quot;Olá, Avatar!&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
touch_start(integer total_number) &lt;br /&gt;
// O evento touch_start será disparado ao tocarem no objeto, quer dizer que ao se tocar em determinado prim ou objeto ele realizará o comando entre chaves.&lt;br /&gt;
&lt;br /&gt;
{ //A palavra integer é reservada, utilizada para declarar variáveis do tipo número inteiro no SL.&lt;br /&gt;
&lt;br /&gt;
  llSay(0, &amp;quot;Tocado&amp;quot;); //Ao se tocar no objeto, este enviará a mensagem &amp;quot;Tocado&amp;quot; no canal de chat geral 0(zero).&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Bem, por hoje é só, aguardem novas postagens.&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632292</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632292"/>
		<updated>2009-10-26T04:47:10Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () &lt;br /&gt;
// This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start event will be triggered when you touch an object, means that when you touch a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632282</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632282"/>
		<updated>2009-10-26T04:45:30Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () &lt;br /&gt;
// This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start The event will be fired to hit the object, means that when you play a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632272</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=632272"/>
		<updated>2009-10-26T04:43:14Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, every scripts has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened {and closed} ... &lt;br /&gt;
    state_entry () // This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start The event will be fired to hit the object, means that when you play a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=626373</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=626373"/>
		<updated>2009-10-22T18:16:58Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, everyone has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened and closed () ... &lt;br /&gt;
    state_entry () // This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start The event will be fired to hit the object, means that when you play a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, wait for new contents. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=626363</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=626363"/>
		<updated>2009-10-22T18:15:25Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, everyone has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened and closed () ... &lt;br /&gt;
    state_entry () // This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start The event will be fired to hit the object, means that when you play a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, thats all folks ! Waiting for new posts. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=626343</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=626343"/>
		<updated>2009-10-22T18:14:25Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, everyone has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened and closed () ... &lt;br /&gt;
    state_entry () // This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) &lt;br /&gt;
// llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;)&lt;br /&gt;
//for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number)&lt;br /&gt;
 // touch_start The event will be fired to hit the object, means that when you play a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, for the day, awaiting new posts. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=626323</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=626323"/>
		<updated>2009-10-22T18:10:51Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default // This is the basic structure of all the scripts, everyone has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened and closed () ... &lt;br /&gt;
    state_entry () // This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) // llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;) for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number) // touch_start The event will be fired to hit the object, means that when you play a certain prim or object he held the command in braces. &lt;br /&gt;
{// The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) // When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, for the day, awaiting new posts. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=626283</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=626283"/>
		<updated>2009-10-22T18:06:10Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;lsl&amp;gt;default / / This is the basic structure of all the scripts, everyone has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened and closed () ... &lt;br /&gt;
    state_entry () / / This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) / / llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;) for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number) / / touch_start The event will be fired to hit the object, means that when you play a certain prim or object he held the command in braces. &lt;br /&gt;
{/ / The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) / / When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
Well, for the day, awaiting new posts. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Meu_primeiro_script_(Portugu%C3%AAs-Br)&amp;diff=626273</id>
		<title>Meu primeiro script (Português-Br)</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Meu_primeiro_script_(Portugu%C3%AAs-Br)&amp;diff=626273"/>
		<updated>2009-10-22T18:05:25Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;Boa tarde leitores ! Nesse post mostrarei como iniciar em LSL fazendo seu primeiro script. Começaremos com uma criação simples, só para que vocês entendam facilmente como fazer. Primeiro teleporte-se para um Sandbox, ou para sua casa, ou para algum lugar onde poderá criar(verifique o ícone caixa com sinal de proíbido na barra de nomes do SL, acima da janela). Feito isso, clique ao solo para criar um prim qualquer. Verifique como fazer por este link: &lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ao criar o objeto, clique com o botão direito do mouse no mesmo, e em editar(edit), pronto, você visualizará a caixa de ferramentas. Nela existem várias guias, a que abordaremos nesse post é a guia conteúdo(contents). É nesta guia colocaremos os conteúdos dos prims ou objetos, e os scripts que farão com que os objetos funcionem, no Second Life. Bem, vamos aos scripts. Reparem que há um botão novo, clique no mesmo. Automaticamente, será criado um script chamado new script, você também pode criar scripts pelo inventário e arrasta-lo para a guia conteúdo de qualquer objeto. Cliquem duas vezes no &amp;quot;New Script&amp;quot;, e perceberá que já existem algumas linhas de código prontas, isso é padrão do SL, para que se torne um pouco autoexplicativo. &lt;br /&gt;
&lt;br /&gt;
Ex: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;lsl&amp;gt;default  //Esta é a estrutura básica de todos os scripts, todos tem a estrutura default(padrão) &lt;br /&gt;
&lt;br /&gt;
{ //Chaves: São delimitadores de blocos de programação, todos os blocos devem ser abertos { e fechados }...&lt;br /&gt;
   state_entry()  //Este evento representa  o estado inicial de cada estrutura, vai ser disparado ao se entrar na estrutura acima (default)&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
  llSay(0, &amp;quot;Olá, Avatar !&amp;quot;); //llSay é uma função predefinida do SL, recebe parâmetros (0, &amp;quot;Olá, Avatar!&amp;quot;), para que realize açóes, no caso dessa, ela fala no canal geral de chat (0), a mensagem &amp;quot;Olá, Avatar!&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
touch_start(integer total_number) // O evento touch_start será disparado ao tocarem no objeto, quer dizer que ao se tocar em determinado prim ou objeto ele realizará o comando entre chaves.&lt;br /&gt;
&lt;br /&gt;
{ //A palavra integer é reservada, utilizada para declarar variáveis do tipo número inteiro no SL.&lt;br /&gt;
&lt;br /&gt;
  llSay(0, &amp;quot;Tocado&amp;quot;); //Ao se tocar no objeto, este enviará a mensagem &amp;quot;Tocado&amp;quot; no canal de chat geral 0(zero).&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
}&amp;lt;/lsl&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Bem, por hoje é só, aguardem novas postagens.&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Meu_primeiro_script_(Portugu%C3%AAs-Br)&amp;diff=626243</id>
		<title>Meu primeiro script (Português-Br)</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Meu_primeiro_script_(Portugu%C3%AAs-Br)&amp;diff=626243"/>
		<updated>2009-10-22T18:03:08Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;Boa tarde leitores ! Nesse post mostrarei como iniciar em LSL fazendo seu primeiro script. Começaremos com uma criação simples, só para que vocês entendam facilmente como fazer. Primeiro teleporte-se para um Sandbox, ou para sua casa, ou para algum lugar onde poderá criar(verifique o ícone caixa com sinal de proíbido na barra de nomes do SL, acima da janela). Feito isso, clique ao solo para criar um prim qualquer. Verifique como fazer por este link: &lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ao criar o objeto, clique com o botão direito do mouse no mesmo, e em editar(edit), pronto, você visualizará a caixa de ferramentas. Nela existem várias guias, a que abordaremos nesse post é a guia conteúdo(contents). É nesta guia colocaremos os conteúdos dos prims ou objetos, e os scripts que farão com que os objetos funcionem, no Second Life. Bem, vamos aos scripts. Reparem que há um botão novo, clique no mesmo. Automaticamente, será criado um script chamado new script, você também pode criar scripts pelo inventário e arrasta-lo para a guia conteúdo de qualquer objeto. Cliquem duas vezes no &amp;quot;New Script&amp;quot;, e perceberá que já existem algumas linhas de código prontas, isso é padrão do SL, para que se torne um pouco autoexplicativo. &lt;br /&gt;
&lt;br /&gt;
Ex: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;default  //Esta é a estrutura básica de todos os scripts, todos tem a estrutura default(padrão) &lt;br /&gt;
&lt;br /&gt;
{ //Chaves: São delimitadores de blocos de programação, todos os blocos devem ser abertos { e fechados }...&amp;lt;p&amp;gt;&lt;br /&gt;
   state_entry()  //Este evento representa  o estado inicial de cada estrutura, vai ser disparado ao se entrar na estrutura acima (default)&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
  llSay(0, &amp;quot;Olá, Avatar !&amp;quot;); //llSay é uma função predefinida do SL, recebe parâmetros (0, &amp;quot;Olá, Avatar!&amp;quot;), para que realize açóes, no caso dessa, ela fala no canal geral de chat (0), a mensagem &amp;quot;Olá, Avatar!&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
touch_start(integer total_number) // O evento touch_start será disparado ao tocarem no objeto, quer dizer que ao se tocar em determinado prim ou objeto ele realizará o comando entre chaves.&lt;br /&gt;
&lt;br /&gt;
{ //A palavra integer é reservada, utilizada para declarar variáveis do tipo número inteiro no SL.&lt;br /&gt;
&lt;br /&gt;
  llSay(0, &amp;quot;Tocado&amp;quot;); //Ao se tocar no objeto, este enviará a mensagem &amp;quot;Tocado&amp;quot; no canal de chat geral 0(zero).&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
}&amp;lt;/nowiki&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Bem, por hoje é só, aguardem novas postagens.&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Meu_primeiro_script_(Portugu%C3%AAs-Br)&amp;diff=626233</id>
		<title>Meu primeiro script (Português-Br)</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Meu_primeiro_script_(Portugu%C3%AAs-Br)&amp;diff=626233"/>
		<updated>2009-10-22T18:02:21Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;Boa tarde leitores ! Nesse post mostrarei como iniciar em LSL fazendo seu primeiro script. Começaremos com uma criação simples, só para que vocês entendam facilmente como fazer. Primeiro teleporte-se para um Sandbox, ou para sua casa, ou para algum lugar onde poderá criar(verifique o ícone caixa com sinal de proíbido na barra de nomes do SL, acima da janela). Feito isso, clique ao solo para criar um prim qualquer. Verifique como fazer por este link: &lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ao criar o objeto, clique com o botão direito do mouse no mesmo, e em editar(edit), pronto, você visualizará a caixa de ferramentas. Nela existem várias guias, a que abordaremos nesse post é a guia conteúdo(contents). É nesta guia colocaremos os conteúdos dos prims ou objetos, e os scripts que farão com que os objetos funcionem, no Second Life. Bem, vamos aos scripts. Reparem que há um botão novo, clique no mesmo. Automaticamente, será criado um script chamado new script, você também pode criar scripts pelo inventário e arrasta-lo para a guia conteúdo de qualquer objeto. Cliquem duas vezes no &amp;quot;New Script&amp;quot;, e perceberá que já existem algumas linhas de código prontas, isso é padrão do SL, para que se torne um pouco autoexplicativo. &lt;br /&gt;
&lt;br /&gt;
Ex: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;default  //Esta é a estrutura básica de todos os scripts, todos tem a estrutura default(padrão) &lt;br /&gt;
&lt;br /&gt;
{ //Chaves: São delimitadores de blocos de programação, todos os blocos devem ser abertos { e fechados }...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   state_entry()  //Este evento representa  o estado inicial de cada estrutura, vai ser disparado ao se entrar na estrutura acima (default)&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
  llSay(0, &amp;quot;Olá, Avatar !&amp;quot;); //llSay é uma função predefinida do SL, recebe parâmetros (0, &amp;quot;Olá, Avatar!&amp;quot;), para que realize açóes, no caso dessa, ela fala no canal geral de chat (0), a mensagem &amp;quot;Olá, Avatar!&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
touch_start(integer total_number) // O evento touch_start será disparado ao tocarem no objeto, quer dizer que ao se tocar em determinado prim ou objeto ele realizará o comando entre chaves.&lt;br /&gt;
&lt;br /&gt;
{ //A palavra integer é reservada, utilizada para declarar variáveis do tipo número inteiro no SL.&lt;br /&gt;
&lt;br /&gt;
  llSay(0, &amp;quot;Tocado&amp;quot;); //Ao se tocar no objeto, este enviará a mensagem &amp;quot;Tocado&amp;quot; no canal de chat geral 0(zero).&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
}&amp;lt;/nowiki&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Bem, por hoje é só, aguardem novas postagens.&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=626223</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=626223"/>
		<updated>2009-10-22T18:01:17Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;nowiki&amp;gt;default / / This is the basic structure of all the scripts, everyone has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened and closed () ... &lt;br /&gt;
    state_entry () / / This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) / / llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;) for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number) / / touch_start The event will be fired to hit the object, means that when you play a certain prim or object he held the command in braces. &lt;br /&gt;
{/ / The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) / / When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/nowiki&amp;gt; &lt;br /&gt;
Well, for the day, awaiting new posts. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Meu_primeiro_script_(Portugu%C3%AAs-Br)&amp;diff=604113</id>
		<title>Meu primeiro script (Português-Br)</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Meu_primeiro_script_(Portugu%C3%AAs-Br)&amp;diff=604113"/>
		<updated>2009-10-17T16:26:39Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;Boa tarde leitores ! Nesse post mostrarei como iniciar em LSL fazendo seu primeiro script. Começaremos com uma criação simples, só para que vocês entendam facilmente como fazer. Primeiro teleporte-se para um Sandbox, ou para sua casa, ou para algum lugar onde poderá criar(verifique o ícone caixa com sinal de proíbido na barra de nomes do SL, acima da janela). Feito isso, clique ao solo para criar um prim qualquer. Verifique como fazer por este link: &lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ao criar o objeto, clique com o botão direito do mouse no mesmo, e em editar(edit), pronto, você visualizará a caixa de ferramentas. Nela existem várias guias, a que abordaremos nesse post é a guia conteúdo(contents). É nesta guia colocaremos os conteúdos dos prims ou objetos, e os scripts que farão com que os objetos funcionem, no Second Life. Bem, vamos aos scripts. Reparem que há um botão novo, clique no mesmo. Automaticamente, será criado um script chamado new script, você também pode criar scripts pelo inventário e arrasta-lo para a guia conteúdo de qualquer objeto. Cliquem duas vezes no &amp;quot;New Script&amp;quot;, e perceberá que já existem algumas linhas de código prontas, isso é padrão do SL, para que se torne um pouco autoexplicativo. &lt;br /&gt;
&lt;br /&gt;
Ex: &lt;br /&gt;
&lt;br /&gt;
default  //Esta é a estrutura básica de todos os scripts, todos tem a estrutura default(padrão) &lt;br /&gt;
&lt;br /&gt;
{ //Chaves: São delimitadores de blocos de programação, todos os blocos devem ser abertos { e fechados }...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   state_entry()  //Este evento representa  o estado inicial de cada estrutura, vai ser disparado ao se entrar na estrutura acima (default)&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
  llSay(0, &amp;quot;Olá, Avatar !&amp;quot;); //llSay é uma função predefinida do SL, recebe parâmetros (0, &amp;quot;Olá, Avatar!&amp;quot;), para que realize açóes, no caso dessa, ela fala no canal geral de chat (0), a mensagem &amp;quot;Olá, Avatar!&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
touch_start(integer total_number) // O evento touch_start será disparado ao tocarem no objeto, quer dizer que ao se tocar em determinado prim ou objeto ele realizará o comando entre chaves.&lt;br /&gt;
&lt;br /&gt;
{ //A palavra integer é reservada, utilizada para declarar variáveis do tipo número inteiro no SL.&lt;br /&gt;
&lt;br /&gt;
  llSay(0, &amp;quot;Tocado&amp;quot;); //Ao se tocar no objeto, este enviará a mensagem &amp;quot;Tocado&amp;quot; no canal de chat geral 0(zero).&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
Bem, por hoje é só, aguardem novas postagens.&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Meu_primeiro_script_(Portugu%C3%AAs-Br)&amp;diff=604103</id>
		<title>Meu primeiro script (Português-Br)</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Meu_primeiro_script_(Portugu%C3%AAs-Br)&amp;diff=604103"/>
		<updated>2009-10-17T16:23:26Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: Created page with &amp;#039;Boa tarde leitores ! Nesse post mostrarei como iniciar em LSL fazendo seu primeiro script. Começaremos com uma criação simples, só para que vocês entendam facilmente como fa...&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Boa tarde leitores ! Nesse post mostrarei como iniciar em LSL fazendo seu primeiro script. Começaremos com uma criação simples, só para que vocês entendam facilmente como fazer. Primeiro teleporte-se para um Sandbox, ou para sua casa, ou para algum lugar onde poderá criar(verifique o ícone caixa com sinal de proíbido na barra de nomes do SL, acima da janela). Feito isso, clique ao solo para criar um prim qualquer. Verifique como fazer por este link: &lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ao criar o objeto, clique com o botão direito do mouse no mesmo, e em editar(edit), pronto, você visualizará a caixa de ferramentas. Nela existem várias guias, a que abordaremos nesse post é a guia conteúdo(contents). É nesta guia colocaremos os conteúdos dos prims ou objetos, e os scripts que farão com que os objetos funcionem, no Second Life. Bem, vamos aos scripts. Reparem que há um botão novo, clique no mesmo. Automaticamente, será criado um script chamado new script, você também pode criar scripts pelo inventário e arrasta-lo para a guia conteúdo de qualquer objeto. Cliquem duas vezes no &amp;quot;New Script&amp;quot;, e perceberá que já existem algumas linhas de código prontas, isso é padrão do SL, para que se torne um pouco autoexplicativo. &lt;br /&gt;
&lt;br /&gt;
Ex: &lt;br /&gt;
&lt;br /&gt;
default  //Esta é a estrutura básica de todos os scripts, todos tem a estrutura default(padrão) &lt;br /&gt;
&lt;br /&gt;
{ //Chaves: São delimitadores de blocos de programação, todos os blocos devem ser abertos { e fechados }...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   state_entry()  //Este evento representa  o estado inicial de cada estrutura, vai ser disparado ao se entrar na estrutura acima (default)&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
  llSay(0, &amp;quot;Olá, Avatar !&amp;quot;); //llSay é uma função predefinida do SL, recebe parâmetros (0, &amp;quot;Olá, Avatar!&amp;quot;), para que realize açóes, no caso dessa, ela fala no canal geral de chat (0), a mensagem &amp;quot;Olá, Avatar!&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
touch_start(integer total_number) // O evento touch_start será disparado ao tocarem no objeto, quer dizer que ao se tocar em determinado prim ou objeto ele realizará o comando entre chaves.&lt;br /&gt;
&lt;br /&gt;
{ //A palavra integer é reservada, utilizada para declarar variáveis do tipo número inteiro no SL.&lt;br /&gt;
&lt;br /&gt;
  llSay(0, &amp;quot;Tocado&amp;quot;); //Ao se tocar no objeto, este enviará a mensagem &amp;quot;Tocado&amp;quot; no canal de chat geral 0(zero).&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
Bem, por hoje é só, aguardem novas postagens.&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=604093</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=604093"/>
		<updated>2009-10-17T16:23:11Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
default / / This is the basic structure of all the scripts, everyone has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened and closed () ... &lt;br /&gt;
    state_entry () / / This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) / / llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;) for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number) / / touch_start The event will be fired to hit the object, means that when you play a certain prim or object he held the command in braces. &lt;br /&gt;
{/ / The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) / / When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
Well, for the day, awaiting new posts. &lt;br /&gt;
&lt;br /&gt;
[[Meu primeiro script (Português-Br)]]&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=604083</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=604083"/>
		<updated>2009-10-17T16:21:43Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
default / / This is the basic structure of all the scripts, everyone has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened and closed () ... &lt;br /&gt;
    state_entry () / / This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) / / llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;) for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number) / / touch_start The event will be fired to hit the object, means that when you play a certain prim or object he held the command in braces. &lt;br /&gt;
{/ / The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) / / When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
Well, for the day, awaiting new posts. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=604073</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=604073"/>
		<updated>2009-10-17T16:20:57Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Good afternoon readers! In this post I&#039;ll show you how to start in making your first LSL script. Start with a simple creation, just so you understand how to do easily. First teleport to a sandbox, or to your home, or somewhere where you can create (check the icon box with sign prohibited in bar name of SL above the window). Done, click the ground to create a prim no. Check how to make this link, or in the SL wiki.&lt;br /&gt;
&lt;br /&gt;
http://technologyaecompanya.blogspot.com/2009/10/construcao-no-second-life-introducao-e.html &lt;br /&gt;
&lt;br /&gt;
When creating the object, click the right mouse button on it, and edit, ready, you will see the toolbox. In it there are several guides, which we will address in this post is the Contents tab. It is in this guide put the contents of prims or objects, and scripts that will make objects work in Second Life. Well, here&#039;s the script. Notice that there is a new button, click it. Automatically, you will create a script called &amp;quot;New Script&amp;quot;, you can also create scripts for inventory and drag it to guide the content of any object. Click twice on &amp;quot;New Script&amp;quot;, and realize that there are already some lines of code ready, this is standard SL, so that it becomes a bit of obvious. &lt;br /&gt;
Example:&lt;br /&gt;
default / / This is the basic structure of all the scripts, everyone has the structure of default (default) &lt;br /&gt;
{// Keys: They delimiters programming blocks, all blocks should be opened and closed () ... &lt;br /&gt;
    state_entry () / / This event represents the initial state of each structure, will be triggered upon entering the structure above (default) &lt;br /&gt;
{   llSay (0, &amp;quot;Hello, Avatar!&amp;quot;) / / llSay is a default function of the SL receives parameters (0, &amp;quot;Hello, Avatar!&amp;quot;) for performing actions in this case, it speaks in general channel chat (0), the message &amp;quot;Hello, Avatar!&amp;quot;). &lt;br /&gt;
}&lt;br /&gt;
touch_start (integer total_number) / / touch_start The event will be fired to hit the object, means that when you play a certain prim or object he held the command in braces. &lt;br /&gt;
{/ / The word integer is reserved, used to declare variables of type integer in SL. &lt;br /&gt;
   llSay (0, &amp;quot;Touched&amp;quot;) / / When you touch the object, it sends the message &amp;quot;played&amp;quot; in the general chat channel 0 (zero). &lt;br /&gt;
}&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
Well, for the day, awaiting new posts. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=499262</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=499262"/>
		<updated>2009-10-01T13:41:53Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|Instructors=*&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To learn about LSL, you have to know about variables, spaces reserved, where you can load with values that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
You can learn a lot in the menu help ► scripts portal...Frequently I&#039;ll put hints in this page. Well, see you later...&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=PRIMEIRA_DICA_DE_LSL_(Linguagem_de_Scripts_do_Second_Life)&amp;diff=499252</id>
		<title>PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=PRIMEIRA_DICA_DE_LSL_(Linguagem_de_Scripts_do_Second_Life)&amp;diff=499252"/>
		<updated>2009-10-01T13:39:48Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Para saber mais sobre LSL, você tem que saber sobre variáveis, espaços reservados, onde você pode carregar com valores que permitem que você trabalhe fazendo operações matemáticas, comparações, dentre outros. &lt;br /&gt;
Você pode aprender muito no menu de ajuda ► portal de scripts... Freqüentemente eu vou colocar dicas nesta página. Bem, vejo vocês mais tarde ...&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=499242</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=499242"/>
		<updated>2009-10-01T13:38:39Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|name=EdsonMG Anthony&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|assist=&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|Scripter=*&lt;br /&gt;
|Builder=*&lt;br /&gt;
|Instructor=*&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Tor learn about LSL, you have to know about variables, spaces reserved, where you can load with valours that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=499232</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=499232"/>
		<updated>2009-10-01T13:32:39Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|assist=&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|scripter&lt;br /&gt;
|builder&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST LSL HINT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Tor learn about LSL, you have to know about variables, spaces reserved, where you can load with valours that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=499222</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=499222"/>
		<updated>2009-10-01T13:31:22Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|assist=&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|scripter= *&lt;br /&gt;
|builder=*&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
FIRST LSL HINT &lt;br /&gt;
&lt;br /&gt;
Tor learn about LSL, you have to know about variables, spaces reserved, where you can load with valours that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=PRIMEIRA_DICA_DE_LSL_(Linguagem_de_Scripts_do_Second_Life)&amp;diff=499212</id>
		<title>PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=PRIMEIRA_DICA_DE_LSL_(Linguagem_de_Scripts_do_Second_Life)&amp;diff=499212"/>
		<updated>2009-10-01T13:30:32Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: Created page with &amp;#039;Para saber mais sobre LSL, você tem que saber sobre variáveis, espaços reservados, onde você pode carregar com valores que permite que você trabalhe fazendo operações mate...&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Para saber mais sobre LSL, você tem que saber sobre variáveis, espaços reservados, onde você pode carregar com valores que permite que você trabalhe fazendo operações matemáticas, comparações entre outros. &lt;br /&gt;
Você pode aprender muito no menu de ajuda scripts ► portal ... Freqüentemente eu vou colocar dicas nesta página. Bem, vejo vocês mais tarde ...&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=499202</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=499202"/>
		<updated>2009-10-01T13:30:06Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|assist=&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
{{skills&lt;br /&gt;
|scripter= *&lt;br /&gt;
|builder=*&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
FIRST LSL HINT &lt;br /&gt;
&lt;br /&gt;
Tor learn about LSL, you have to know about variables, spaces reserved, where you can load with valours that allows you to work making mathematical operations, comparisons and others.&lt;br /&gt;
&lt;br /&gt;
[[PRIMEIRA DICA DE LSL (Linguagem de Scripts do Second Life)]]&lt;br /&gt;
&lt;br /&gt;
Para saber mais sobre LSL, você tem que saber sobre variáveis, espaços reservados, onde você pode carregar com valores que permite que você trabalhe fazendo operações matemáticas, comparações entre outros. &lt;br /&gt;
Você pode aprender muito no menu de ajuda scripts ► portal ... Freqüentemente eu vou colocar dicas nesta página. Bem, vejo vocês mais tarde ...&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498832</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498832"/>
		<updated>2009-09-30T03:24:25Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: /* MY FIRST POST */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|assist=&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment, Business and learning.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498822</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498822"/>
		<updated>2009-09-30T03:18:37Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: /* MY FIRST POST */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|assist=&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment and Business.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498812</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498812"/>
		<updated>2009-09-30T03:17:45Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: /* MY FIRST POST */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|assist=&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment and Business.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to dating and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s together make it better place, where residents use Second Life to show creativity, and maybe can work in here, and get money to Real Life. Let&#039;s report all the people that steal, and disturb the noobs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HINT 1&#039;&#039;&#039;&lt;br /&gt;
To report a bad people (Avatar) you have to: help-&amp;gt;report abuse, so, mark include photo, select the category, select the resident, and, in the summary, describe exactly what happend. With place and the most of details as possible.&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498802</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498802"/>
		<updated>2009-09-30T03:07:40Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: /* CURRICULUM */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|assist=&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;DO YOU NEED SOME HELP ? PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment and Business.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to date and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s talk about this, send e-mail to: edsonmganthony@gmail.com&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498792</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498792"/>
		<updated>2009-09-30T03:04:25Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: /* MY FIRST POST */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|assist=&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;NEED SOME HELP, PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment and Business.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to date and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s talk about this, send e-mail to: edsonmganthony@gmail.com&lt;br /&gt;
&lt;br /&gt;
Best Regards,                                                                     &lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498782</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498782"/>
		<updated>2009-09-30T03:03:50Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: /* MY FIRST POST */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|assist=&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;NEED SOME HELP, PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment and Business.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to date and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s talk about this, send e-mail to: edsonmganthony@gmail.com&lt;br /&gt;
&lt;br /&gt;
Best Regards,&lt;br /&gt;
&lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498772</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498772"/>
		<updated>2009-09-30T03:03:09Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: /* MY FIRST POST */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|assist=&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;NEED SOME HELP, PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment and Business.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SECOND LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to date and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s talk about this, send e-mail to: edsonmganthony@gmail.com&lt;br /&gt;
&lt;br /&gt;
Best Regards,&lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498762</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498762"/>
		<updated>2009-09-30T03:02:14Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|assist=&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;NEED SOME HELP, PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment and Business.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;LIFE A STRONG TOOL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to date and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s talk about this, send e-mail to: edsonmganthony@gmail.com&lt;br /&gt;
&lt;br /&gt;
Best Regards,&lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498753</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498753"/>
		<updated>2009-09-30T02:58:53Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|assist=&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
&lt;br /&gt;
== CURRICULUM ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BUILDER, SCRIPTER, DESIGNER IN SECOND LIFE. SYSTEMS ANALIST IN REAL LIFE, KNOWLEDGE IN C++, JAVA, VB6, PASCAL(DELPHI),SQL SERVER(AND OTHERS DATA BASES), SOLIDWORKS, AUTOCAD...&lt;br /&gt;
NEED SOME HELP, PLEASE, TALK WITH ME.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== MY FIRST POST ==&lt;br /&gt;
&lt;br /&gt;
Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment and Business.&lt;br /&gt;
Wait the next post. Thanks to read.&lt;br /&gt;
&lt;br /&gt;
SECOND LIFE A STRONG TOOL&lt;br /&gt;
&lt;br /&gt;
Hi people, I&#039;m here today to talk about the use of Second Life. The most of residents only use this tool to date and nonsense things. I think that the people spend this strong tool with things useless. Let&#039;s talk about this, send e-mail to: edsonmganthony@gmail.com&lt;br /&gt;
&lt;br /&gt;
--[[User:EdsonMG Anthony|https&amp;amp;#58;//wiki.secondlife.com/wiki/User:EdsonMG_Anthony]] 02:58, 30 September 2009 (UTC)Best Regards,&lt;br /&gt;
EdsonMG Anthony&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498743</id>
		<title>User:EdsonMG Anthony</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:EdsonMG_Anthony&amp;diff=498743"/>
		<updated>2009-09-30T02:52:47Z</updated>

		<summary type="html">&lt;p&gt;EdsonMG Anthony: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{visl&lt;br /&gt;
|Greeter=&lt;br /&gt;
|Mentor=*&lt;br /&gt;
|Scribe=&lt;br /&gt;
|MLinguist=*&lt;br /&gt;
|Coach=&lt;br /&gt;
|assist=&lt;br /&gt;
|LSL=*&lt;br /&gt;
|}}&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;Well people, I hope to help you with this page. In here you can talk about, everything in Second Life. This wonderful world of Entertainment and Business.&lt;br /&gt;
Wait the next post. Thanks to read.&#039;&#039;&#039; ==&lt;/div&gt;</summary>
		<author><name>EdsonMG Anthony</name></author>
	</entry>
</feed>