<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://en.wiki.ryzom.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kaikyo</id>
		<title>EncyclopAtys - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://en.wiki.ryzom.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kaikyo"/>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Special:Contributions/Kaikyo"/>
		<updated>2026-04-25T18:58:54Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.29.1</generator>

	<entry>
		<id>https://en.wiki.ryzom.com/w/index.php?title=Client_en_Bois&amp;diff=11892</id>
		<title>Client en Bois</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/w/index.php?title=Client_en_Bois&amp;diff=11892"/>
				<updated>2012-06-20T07:10:08Z</updated>
		
		<summary type="html">&lt;p&gt;Kaikyo: /* Alternative */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''CeB''' or '''Client en Bois''' is a &amp;lt;Mtp&amp;gt; chat client written using [[wikipedia:C++|C++]] and [[wikipedia:Qt (framework)|Qt4]]. It ultimately replaced [[Klients]] as the interface for accessing the support chat for Ryzom.  CeB has native clients for Windows, OSX and Linux, which can be downloaded at the CeB project home.&lt;br /&gt;
&lt;br /&gt;
= Features =&lt;br /&gt;
Below is a list of the main features:&lt;br /&gt;
* Support of Ryzom chat support servers&lt;br /&gt;
* Multi-servers managing&lt;br /&gt;
* Multilingual&lt;br /&gt;
* Tabs for tell, wall, who, etc&lt;br /&gt;
* [[#Filters|Support of Lua scripting]]&lt;br /&gt;
* Search feature&lt;br /&gt;
* Logs&lt;br /&gt;
* Nicknames completion&lt;br /&gt;
* Auto-connections&lt;br /&gt;
* &amp;quot;About me&amp;quot; popups (Warningo)&lt;br /&gt;
* Tray icon (with activity warning)&lt;br /&gt;
* Auto-away and auto-leave&lt;br /&gt;
&lt;br /&gt;
= Chat commands =&lt;br /&gt;
There are a wide variety of chat commands available&lt;br /&gt;
&lt;br /&gt;
= Filters =&lt;br /&gt;
This feature of CeB makes it possible to apply a &amp;quot;filter&amp;quot; to what you type. Only certain things can go through the filter and this will have a certain output, depending on the filter applied naturally. Those familiar with [[wikipedia:Lua_(programming_language)|Lua]] can write their own filters and scripts if they want to.&lt;br /&gt;
&lt;br /&gt;
At present the ''alternate'', ''haxor'', ''insult'' and ''rot13'' filters are not included in the latest stable build of CeB for Windows. To make use of these filters simply download and copy the required files into the &amp;quot;scripts&amp;quot; folder, located in the CeB directory. The archived files for the filters can be downloaded [http://www.ryzomnomnom.com/sources/AdditionalFilters.rar here for .rar] and [http://www.ryzomnomnom.com/sources/AdditionalFilters.zip here for .zip].&lt;br /&gt;
&lt;br /&gt;
== alternate ==&lt;br /&gt;
This filter changes the input string so that in the output string every odd numbered letter is lowercase and every even numbered letter is uppercase.&lt;br /&gt;
&lt;br /&gt;
 Plain:     Once upon a time there lived a ploderos which made strange sounds...&lt;br /&gt;
 alternate: oNcE UpOn a tImE ThErE LiVeD A PlOdErOs wHiCh mAdE StRaNgE SoUnDs...&lt;br /&gt;
&lt;br /&gt;
== calc ==&lt;br /&gt;
This filter allows one to do calculations in CeB as well as use certain special '''os''' functions. Basic calculations as well as many more complex ones can be done with this filter applied, it should be noted though that this filter makes heavy use of Lua math library for more complex calculations.&lt;br /&gt;
&lt;br /&gt;
Below is a list of more commonly used functions and operators, for a full list of Lua math functions see the [http://lua-users.org/wiki/MathLibraryTutorial Lua Math Library] and for a full list of Lua os functions see the [http://lua-users.org/wiki/OsLibraryTutorial Lua Os Library].&lt;br /&gt;
&lt;br /&gt;
=== Operators ===&lt;br /&gt;
* '''+''' ''for addition''&lt;br /&gt;
* '''&amp;amp;ndash;''' ''for subtraction''&lt;br /&gt;
* '''*''' ''for multiplication''&lt;br /&gt;
* '''/''' ''for division''&lt;br /&gt;
* '''^''' ''for exponents (eg. 5^3 &amp;amp;equiv; 5&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;)''&lt;br /&gt;
&lt;br /&gt;
=== Trigonometry ===&lt;br /&gt;
* '''math.sin(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs the sine value of the operand''&lt;br /&gt;
* '''math.cos(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs the cosine value of the operand''&lt;br /&gt;
* '''math.tan(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs the tangent value of the operand''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The output of these functions are in radians, to convert it to degrees make use of '''math.deg(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)'''&lt;br /&gt;
&lt;br /&gt;
=== Os ===&lt;br /&gt;
* '''os.clock()''' ''Returns CPU time since Lua started''&lt;br /&gt;
* '''os.exit()''' ''Terminates the host program''&lt;br /&gt;
* '''os.getenv(&amp;quot;&amp;lt;font color=&amp;quot;#33BB33&amp;quot;&amp;gt;&amp;lt;variable&amp;gt;&amp;lt;/font&amp;gt;&amp;quot;)''' ''Returns the value of the process environment variable &amp;lt;variable&amp;gt;, or nil if the variable is not defined''&lt;br /&gt;
* '''os.time()''' ''Displays time in system seconds''&lt;br /&gt;
&lt;br /&gt;
=== Other ===&lt;br /&gt;
* '''math.pi''' ''Outputs the value of &amp;amp;pi;'' &lt;br /&gt;
* '''math.random()''' ''Outputs a random value between zero and one''&lt;br /&gt;
** '''math.random(&amp;lt;font color=&amp;quot;#FF0000&amp;quot;&amp;gt;&amp;lt;parameter&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs a random value between zero and the given parameter''&lt;br /&gt;
** '''math.random(&amp;lt;font color=&amp;quot;#FF0000&amp;quot;&amp;gt;&amp;lt;parameter&amp;gt;&amp;lt;/font&amp;gt;,&amp;lt;font color=&amp;quot;#FF0000&amp;quot;&amp;gt;&amp;lt;parameter&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs a random value between the first parameter and the second parameter''&lt;br /&gt;
* '''math.floor(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Rounds the value of operand down to the nearest integer''&lt;br /&gt;
* '''math.ceil(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Rounds the value of operand up to the nearest integer''&lt;br /&gt;
&lt;br /&gt;
== code ==&lt;br /&gt;
This filter preserves formatting and whitespace. It is most commonly used to display code in chat.&lt;br /&gt;
&lt;br /&gt;
== haxor ==&lt;br /&gt;
This filter replaces the input string with different kinds of alphanumeric characters, giving the output string an appearance similar to that of [[wikipedia:Leet|leetspeak]]. Currently this filter only converts lowercase characters.&lt;br /&gt;
&lt;br /&gt;
 Plain:   abcdefghijklmnopqrstuvwxyz&lt;br /&gt;
 haxor:   @BCD3fGH1JKLmn0pqrSTuvWXy2&lt;br /&gt;
&lt;br /&gt;
== insult ==&lt;br /&gt;
This filter searches for the substring, &amp;quot;*insult*&amp;quot;, in the input string and in *insult*'s place outputs a random French insult. The insult consists of two parts, an adjective and a noun.&lt;br /&gt;
&lt;br /&gt;
Possible adjectives are ''pauvre'', ''misérable'', ''lamentable'', ''triple'', ''sombre'', ''abominable'' and ''effroyable''.&lt;br /&gt;
&lt;br /&gt;
Possible nouns are ''con'', ''abruti'', ''débile'', ''connard'', ''merde'', ''naze'', ''déchet'', ''tête de noeud'', ''bâtard'', ''enxulé'', ''idiot'' and ''crétin''.&lt;br /&gt;
&lt;br /&gt;
== justify ==&lt;br /&gt;
This filter takes the input string and formats it into a justified typesetting. &lt;br /&gt;
&lt;br /&gt;
[[File:CeBJust.png|700px|thumb|center|A comparison between unjustified (above) and justified (below) text in CeB]]&lt;br /&gt;
&lt;br /&gt;
== rot13 ==&lt;br /&gt;
rot13 is short for ''rotation 13''. This filter encodes all you type with a [[wikipedia:Caesar Cipher|Caesar Cipher]] with a left rotation of thirteen:&lt;br /&gt;
&lt;br /&gt;
 Plain:   ABCDEFGHIJKLMNOPQRSTUVWXYZ&lt;br /&gt;
 rot13:   NOPQRSTUVWXYZABCDEFGHIJKLM&lt;br /&gt;
&lt;br /&gt;
rot13 only affects letters of the basic Latin alphabet, it does not affect numbers, special characters and other alphabets, such as æ, å, č, é, ê, ħ, ï, µ, ñ, ø, ō, ß, þ, ù, ÿ, etc.&lt;br /&gt;
&lt;br /&gt;
= Alternative =&lt;br /&gt;
&lt;br /&gt;
If you don't want to use the official client, you can also access the same support via 'telnet', using the server &amp;lt;code&amp;gt;chat.ryzom.com&amp;lt;/code&amp;gt; over the port &amp;lt;code&amp;gt;6002&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
e.g. from the command line in GNU/Linux (and similar OS):&lt;br /&gt;
 &amp;lt;code&amp;gt;telnet chat.ryzom.com 6001&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With Android, [https://play.google.com/store/apps/details?id=com.telnet&amp;amp;hl=en &amp;quot;Simple Telnet Client&amp;quot;] seems to work perfectly to access to the server.&lt;br /&gt;
&lt;br /&gt;
= Downloads =&lt;br /&gt;
* [http://code.google.com/p/cebmtpchat/downloads/list Official CeB Download Page]&lt;br /&gt;
* Additional Filters ([http://www.ryzomnomnom.com/sources/AdditionalFilters.rar  rar], [http://www.ryzomnomnom.com/sources/AdditionalFilters.zip zip])&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
* [http://code.google.com/p/cebmtpchat/ CeB Project Home]&lt;br /&gt;
* [[Klients]]&lt;br /&gt;
&lt;br /&gt;
= References =&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[fr:CeB]]&lt;/div&gt;</summary>
		<author><name>Kaikyo</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/w/index.php?title=Client_en_Bois&amp;diff=11891</id>
		<title>Client en Bois</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/w/index.php?title=Client_en_Bois&amp;diff=11891"/>
				<updated>2012-06-20T07:07:48Z</updated>
		
		<summary type="html">&lt;p&gt;Kaikyo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''CeB''' or '''Client en Bois''' is a &amp;lt;Mtp&amp;gt; chat client written using [[wikipedia:C++|C++]] and [[wikipedia:Qt (framework)|Qt4]]. It ultimately replaced [[Klients]] as the interface for accessing the support chat for Ryzom.  CeB has native clients for Windows, OSX and Linux, which can be downloaded at the CeB project home.&lt;br /&gt;
&lt;br /&gt;
= Features =&lt;br /&gt;
Below is a list of the main features:&lt;br /&gt;
* Support of Ryzom chat support servers&lt;br /&gt;
* Multi-servers managing&lt;br /&gt;
* Multilingual&lt;br /&gt;
* Tabs for tell, wall, who, etc&lt;br /&gt;
* [[#Filters|Support of Lua scripting]]&lt;br /&gt;
* Search feature&lt;br /&gt;
* Logs&lt;br /&gt;
* Nicknames completion&lt;br /&gt;
* Auto-connections&lt;br /&gt;
* &amp;quot;About me&amp;quot; popups (Warningo)&lt;br /&gt;
* Tray icon (with activity warning)&lt;br /&gt;
* Auto-away and auto-leave&lt;br /&gt;
&lt;br /&gt;
= Chat commands =&lt;br /&gt;
There are a wide variety of chat commands available&lt;br /&gt;
&lt;br /&gt;
= Filters =&lt;br /&gt;
This feature of CeB makes it possible to apply a &amp;quot;filter&amp;quot; to what you type. Only certain things can go through the filter and this will have a certain output, depending on the filter applied naturally. Those familiar with [[wikipedia:Lua_(programming_language)|Lua]] can write their own filters and scripts if they want to.&lt;br /&gt;
&lt;br /&gt;
At present the ''alternate'', ''haxor'', ''insult'' and ''rot13'' filters are not included in the latest stable build of CeB for Windows. To make use of these filters simply download and copy the required files into the &amp;quot;scripts&amp;quot; folder, located in the CeB directory. The archived files for the filters can be downloaded [http://www.ryzomnomnom.com/sources/AdditionalFilters.rar here for .rar] and [http://www.ryzomnomnom.com/sources/AdditionalFilters.zip here for .zip].&lt;br /&gt;
&lt;br /&gt;
== alternate ==&lt;br /&gt;
This filter changes the input string so that in the output string every odd numbered letter is lowercase and every even numbered letter is uppercase.&lt;br /&gt;
&lt;br /&gt;
 Plain:     Once upon a time there lived a ploderos which made strange sounds...&lt;br /&gt;
 alternate: oNcE UpOn a tImE ThErE LiVeD A PlOdErOs wHiCh mAdE StRaNgE SoUnDs...&lt;br /&gt;
&lt;br /&gt;
== calc ==&lt;br /&gt;
This filter allows one to do calculations in CeB as well as use certain special '''os''' functions. Basic calculations as well as many more complex ones can be done with this filter applied, it should be noted though that this filter makes heavy use of Lua math library for more complex calculations.&lt;br /&gt;
&lt;br /&gt;
Below is a list of more commonly used functions and operators, for a full list of Lua math functions see the [http://lua-users.org/wiki/MathLibraryTutorial Lua Math Library] and for a full list of Lua os functions see the [http://lua-users.org/wiki/OsLibraryTutorial Lua Os Library].&lt;br /&gt;
&lt;br /&gt;
=== Operators ===&lt;br /&gt;
* '''+''' ''for addition''&lt;br /&gt;
* '''&amp;amp;ndash;''' ''for subtraction''&lt;br /&gt;
* '''*''' ''for multiplication''&lt;br /&gt;
* '''/''' ''for division''&lt;br /&gt;
* '''^''' ''for exponents (eg. 5^3 &amp;amp;equiv; 5&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;)''&lt;br /&gt;
&lt;br /&gt;
=== Trigonometry ===&lt;br /&gt;
* '''math.sin(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs the sine value of the operand''&lt;br /&gt;
* '''math.cos(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs the cosine value of the operand''&lt;br /&gt;
* '''math.tan(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs the tangent value of the operand''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The output of these functions are in radians, to convert it to degrees make use of '''math.deg(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)'''&lt;br /&gt;
&lt;br /&gt;
=== Os ===&lt;br /&gt;
* '''os.clock()''' ''Returns CPU time since Lua started''&lt;br /&gt;
* '''os.exit()''' ''Terminates the host program''&lt;br /&gt;
* '''os.getenv(&amp;quot;&amp;lt;font color=&amp;quot;#33BB33&amp;quot;&amp;gt;&amp;lt;variable&amp;gt;&amp;lt;/font&amp;gt;&amp;quot;)''' ''Returns the value of the process environment variable &amp;lt;variable&amp;gt;, or nil if the variable is not defined''&lt;br /&gt;
* '''os.time()''' ''Displays time in system seconds''&lt;br /&gt;
&lt;br /&gt;
=== Other ===&lt;br /&gt;
* '''math.pi''' ''Outputs the value of &amp;amp;pi;'' &lt;br /&gt;
* '''math.random()''' ''Outputs a random value between zero and one''&lt;br /&gt;
** '''math.random(&amp;lt;font color=&amp;quot;#FF0000&amp;quot;&amp;gt;&amp;lt;parameter&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs a random value between zero and the given parameter''&lt;br /&gt;
** '''math.random(&amp;lt;font color=&amp;quot;#FF0000&amp;quot;&amp;gt;&amp;lt;parameter&amp;gt;&amp;lt;/font&amp;gt;,&amp;lt;font color=&amp;quot;#FF0000&amp;quot;&amp;gt;&amp;lt;parameter&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs a random value between the first parameter and the second parameter''&lt;br /&gt;
* '''math.floor(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Rounds the value of operand down to the nearest integer''&lt;br /&gt;
* '''math.ceil(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Rounds the value of operand up to the nearest integer''&lt;br /&gt;
&lt;br /&gt;
== code ==&lt;br /&gt;
This filter preserves formatting and whitespace. It is most commonly used to display code in chat.&lt;br /&gt;
&lt;br /&gt;
== haxor ==&lt;br /&gt;
This filter replaces the input string with different kinds of alphanumeric characters, giving the output string an appearance similar to that of [[wikipedia:Leet|leetspeak]]. Currently this filter only converts lowercase characters.&lt;br /&gt;
&lt;br /&gt;
 Plain:   abcdefghijklmnopqrstuvwxyz&lt;br /&gt;
 haxor:   @BCD3fGH1JKLmn0pqrSTuvWXy2&lt;br /&gt;
&lt;br /&gt;
== insult ==&lt;br /&gt;
This filter searches for the substring, &amp;quot;*insult*&amp;quot;, in the input string and in *insult*'s place outputs a random French insult. The insult consists of two parts, an adjective and a noun.&lt;br /&gt;
&lt;br /&gt;
Possible adjectives are ''pauvre'', ''misérable'', ''lamentable'', ''triple'', ''sombre'', ''abominable'' and ''effroyable''.&lt;br /&gt;
&lt;br /&gt;
Possible nouns are ''con'', ''abruti'', ''débile'', ''connard'', ''merde'', ''naze'', ''déchet'', ''tête de noeud'', ''bâtard'', ''enxulé'', ''idiot'' and ''crétin''.&lt;br /&gt;
&lt;br /&gt;
== justify ==&lt;br /&gt;
This filter takes the input string and formats it into a justified typesetting. &lt;br /&gt;
&lt;br /&gt;
[[File:CeBJust.png|700px|thumb|center|A comparison between unjustified (above) and justified (below) text in CeB]]&lt;br /&gt;
&lt;br /&gt;
== rot13 ==&lt;br /&gt;
rot13 is short for ''rotation 13''. This filter encodes all you type with a [[wikipedia:Caesar Cipher|Caesar Cipher]] with a left rotation of thirteen:&lt;br /&gt;
&lt;br /&gt;
 Plain:   ABCDEFGHIJKLMNOPQRSTUVWXYZ&lt;br /&gt;
 rot13:   NOPQRSTUVWXYZABCDEFGHIJKLM&lt;br /&gt;
&lt;br /&gt;
rot13 only affects letters of the basic Latin alphabet, it does not affect numbers, special characters and other alphabets, such as æ, å, č, é, ê, ħ, ï, µ, ñ, ø, ō, ß, þ, ù, ÿ, etc.&lt;br /&gt;
&lt;br /&gt;
= Alternative =&lt;br /&gt;
&lt;br /&gt;
If you don't want to use the official client, you can also access the same support via 'telnet', using the server &amp;lt;code&amp;gt;chat.ryzom.com&amp;lt;/code&amp;gt; over the port &amp;lt;code&amp;gt;6002&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
e.g. from the command line in GNU/Linux (and similar OS):&lt;br /&gt;
 &amp;lt;code&amp;gt;telnet chat.ryzom.com 6001&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Downloads =&lt;br /&gt;
* [http://code.google.com/p/cebmtpchat/downloads/list Official CeB Download Page]&lt;br /&gt;
* Additional Filters ([http://www.ryzomnomnom.com/sources/AdditionalFilters.rar  rar], [http://www.ryzomnomnom.com/sources/AdditionalFilters.zip zip])&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
* [http://code.google.com/p/cebmtpchat/ CeB Project Home]&lt;br /&gt;
* [[Klients]]&lt;br /&gt;
&lt;br /&gt;
= References =&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[fr:CeB]]&lt;/div&gt;</summary>
		<author><name>Kaikyo</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/w/index.php?title=Client_en_Bois&amp;diff=11890</id>
		<title>Client en Bois</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/w/index.php?title=Client_en_Bois&amp;diff=11890"/>
				<updated>2012-06-20T07:02:41Z</updated>
		
		<summary type="html">&lt;p&gt;Kaikyo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''CeB''' or '''Client en Bois''' is a &amp;lt;Mtp&amp;gt; chat client written using [[wikipedia:C++|C++]] and [[wikipedia:Qt (framework)|Qt4]]. It ultimately replaced [[Klients]] as the interface for accessing the support chat for Ryzom.  CeB has native clients for Windows, OSX and Linux, which can be downloaded at the CeB project home.&lt;br /&gt;
&lt;br /&gt;
= Features =&lt;br /&gt;
Below is a list of the main features:&lt;br /&gt;
* Support of Ryzom chat support servers&lt;br /&gt;
* Multi-servers managing&lt;br /&gt;
* Multilingual&lt;br /&gt;
* Tabs for tell, wall, who, etc&lt;br /&gt;
* [[#Filters|Support of Lua scripting]]&lt;br /&gt;
* Search feature&lt;br /&gt;
* Logs&lt;br /&gt;
* Nicknames completion&lt;br /&gt;
* Auto-connections&lt;br /&gt;
* &amp;quot;About me&amp;quot; popups (Warningo)&lt;br /&gt;
* Tray icon (with activity warning)&lt;br /&gt;
* Auto-away and auto-leave&lt;br /&gt;
&lt;br /&gt;
= Chat commands =&lt;br /&gt;
There are a wide variety of chat commands available&lt;br /&gt;
&lt;br /&gt;
= Filters =&lt;br /&gt;
This feature of CeB makes it possible to apply a &amp;quot;filter&amp;quot; to what you type. Only certain things can go through the filter and this will have a certain output, depending on the filter applied naturally. Those familiar with [[wikipedia:Lua_(programming_language)|Lua]] can write their own filters and scripts if they want to.&lt;br /&gt;
&lt;br /&gt;
At present the ''alternate'', ''haxor'', ''insult'' and ''rot13'' filters are not included in the latest stable build of CeB for Windows. To make use of these filters simply download and copy the required files into the &amp;quot;scripts&amp;quot; folder, located in the CeB directory. The archived files for the filters can be downloaded [http://www.ryzomnomnom.com/sources/AdditionalFilters.rar here for .rar] and [http://www.ryzomnomnom.com/sources/AdditionalFilters.zip here for .zip].&lt;br /&gt;
&lt;br /&gt;
== alternate ==&lt;br /&gt;
This filter changes the input string so that in the output string every odd numbered letter is lowercase and every even numbered letter is uppercase.&lt;br /&gt;
&lt;br /&gt;
 Plain:     Once upon a time there lived a ploderos which made strange sounds...&lt;br /&gt;
 alternate: oNcE UpOn a tImE ThErE LiVeD A PlOdErOs wHiCh mAdE StRaNgE SoUnDs...&lt;br /&gt;
&lt;br /&gt;
== calc ==&lt;br /&gt;
This filter allows one to do calculations in CeB as well as use certain special '''os''' functions. Basic calculations as well as many more complex ones can be done with this filter applied, it should be noted though that this filter makes heavy use of Lua math library for more complex calculations.&lt;br /&gt;
&lt;br /&gt;
Below is a list of more commonly used functions and operators, for a full list of Lua math functions see the [http://lua-users.org/wiki/MathLibraryTutorial Lua Math Library] and for a full list of Lua os functions see the [http://lua-users.org/wiki/OsLibraryTutorial Lua Os Library].&lt;br /&gt;
&lt;br /&gt;
=== Operators ===&lt;br /&gt;
* '''+''' ''for addition''&lt;br /&gt;
* '''&amp;amp;ndash;''' ''for subtraction''&lt;br /&gt;
* '''*''' ''for multiplication''&lt;br /&gt;
* '''/''' ''for division''&lt;br /&gt;
* '''^''' ''for exponents (eg. 5^3 &amp;amp;equiv; 5&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;)''&lt;br /&gt;
&lt;br /&gt;
=== Trigonometry ===&lt;br /&gt;
* '''math.sin(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs the sine value of the operand''&lt;br /&gt;
* '''math.cos(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs the cosine value of the operand''&lt;br /&gt;
* '''math.tan(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs the tangent value of the operand''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The output of these functions are in radians, to convert it to degrees make use of '''math.deg(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)'''&lt;br /&gt;
&lt;br /&gt;
=== Os ===&lt;br /&gt;
* '''os.clock()''' ''Returns CPU time since Lua started''&lt;br /&gt;
* '''os.exit()''' ''Terminates the host program''&lt;br /&gt;
* '''os.getenv(&amp;quot;&amp;lt;font color=&amp;quot;#33BB33&amp;quot;&amp;gt;&amp;lt;variable&amp;gt;&amp;lt;/font&amp;gt;&amp;quot;)''' ''Returns the value of the process environment variable &amp;lt;variable&amp;gt;, or nil if the variable is not defined''&lt;br /&gt;
* '''os.time()''' ''Displays time in system seconds''&lt;br /&gt;
&lt;br /&gt;
=== Other ===&lt;br /&gt;
* '''math.pi''' ''Outputs the value of &amp;amp;pi;'' &lt;br /&gt;
* '''math.random()''' ''Outputs a random value between zero and one''&lt;br /&gt;
** '''math.random(&amp;lt;font color=&amp;quot;#FF0000&amp;quot;&amp;gt;&amp;lt;parameter&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs a random value between zero and the given parameter''&lt;br /&gt;
** '''math.random(&amp;lt;font color=&amp;quot;#FF0000&amp;quot;&amp;gt;&amp;lt;parameter&amp;gt;&amp;lt;/font&amp;gt;,&amp;lt;font color=&amp;quot;#FF0000&amp;quot;&amp;gt;&amp;lt;parameter&amp;gt;&amp;lt;/font&amp;gt;)''' ''Outputs a random value between the first parameter and the second parameter''&lt;br /&gt;
* '''math.floor(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Rounds the value of operand down to the nearest integer''&lt;br /&gt;
* '''math.ceil(&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;&amp;lt;operand&amp;gt;&amp;lt;/font&amp;gt;)''' ''Rounds the value of operand up to the nearest integer''&lt;br /&gt;
&lt;br /&gt;
== code ==&lt;br /&gt;
This filter preserves formatting and whitespace. It is most commonly used to display code in chat.&lt;br /&gt;
&lt;br /&gt;
== haxor ==&lt;br /&gt;
This filter replaces the input string with different kinds of alphanumeric characters, giving the output string an appearance similar to that of [[wikipedia:Leet|leetspeak]]. Currently this filter only converts lowercase characters.&lt;br /&gt;
&lt;br /&gt;
 Plain:   abcdefghijklmnopqrstuvwxyz&lt;br /&gt;
 haxor:   @BCD3fGH1JKLmn0pqrSTuvWXy2&lt;br /&gt;
&lt;br /&gt;
== insult ==&lt;br /&gt;
This filter searches for the substring, &amp;quot;*insult*&amp;quot;, in the input string and in *insult*'s place outputs a random French insult. The insult consists of two parts, an adjective and a noun.&lt;br /&gt;
&lt;br /&gt;
Possible adjectives are ''pauvre'', ''misérable'', ''lamentable'', ''triple'', ''sombre'', ''abominable'' and ''effroyable''.&lt;br /&gt;
&lt;br /&gt;
Possible nouns are ''con'', ''abruti'', ''débile'', ''connard'', ''merde'', ''naze'', ''déchet'', ''tête de noeud'', ''bâtard'', ''enxulé'', ''idiot'' and ''crétin''.&lt;br /&gt;
&lt;br /&gt;
== justify ==&lt;br /&gt;
This filter takes the input string and formats it into a justified typesetting. &lt;br /&gt;
&lt;br /&gt;
[[File:CeBJust.png|700px|thumb|center|A comparison between unjustified (above) and justified (below) text in CeB]]&lt;br /&gt;
&lt;br /&gt;
== rot13 ==&lt;br /&gt;
rot13 is short for ''rotation 13''. This filter encodes all you type with a [[wikipedia:Caesar Cipher|Caesar Cipher]] with a left rotation of thirteen:&lt;br /&gt;
&lt;br /&gt;
 Plain:   ABCDEFGHIJKLMNOPQRSTUVWXYZ&lt;br /&gt;
 rot13:   NOPQRSTUVWXYZABCDEFGHIJKLM&lt;br /&gt;
&lt;br /&gt;
rot13 only affects letters of the basic Latin alphabet, it does not affect numbers, special characters and other alphabets, such as æ, å, č, é, ê, ħ, ï, µ, ñ, ø, ō, ß, þ, ù, ÿ, etc.&lt;br /&gt;
&lt;br /&gt;
= Alternative =&lt;br /&gt;
&lt;br /&gt;
If you don't want to use the official client, you can also access the same support via 'telnet', using the server &amp;lt;code&amp;gt;chat.ryzom.com&amp;lt;/code&amp;gt; over the port &amp;lt;code&amp;gt;6001&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
e.g. from the command line in GNU/Linux (and similar OS):&lt;br /&gt;
 &amp;lt;code&amp;gt;telnet chat.ryzom.com 6001&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Downloads =&lt;br /&gt;
* [http://code.google.com/p/cebmtpchat/downloads/list Official CeB Download Page]&lt;br /&gt;
* Additional Filters ([http://www.ryzomnomnom.com/sources/AdditionalFilters.rar  rar], [http://www.ryzomnomnom.com/sources/AdditionalFilters.zip zip])&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
* [http://code.google.com/p/cebmtpchat/ CeB Project Home]&lt;br /&gt;
* [[Klients]]&lt;br /&gt;
&lt;br /&gt;
= References =&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[fr:CeB]]&lt;/div&gt;</summary>
		<author><name>Kaikyo</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/w/index.php?title=Emote&amp;diff=11881</id>
		<title>Emote</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/w/index.php?title=Emote&amp;diff=11881"/>
				<updated>2012-06-01T06:10:53Z</updated>
		
		<summary type="html">&lt;p&gt;Kaikyo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[fr:Émotes]]&lt;br /&gt;
Emotes are a special subset of chat commands which cause the player character to perform a social action, playing an associated animation and logging a description of that action into the chat window. For commands that do not cause character animations, see [[Special command|special command]].&lt;br /&gt;
&lt;br /&gt;
Emotes get their name from the verb &amp;quot;to emote&amp;quot;, which means &amp;quot;to show or pretend emotion.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Custom emotes==&lt;br /&gt;
[[Game_updates/20061221|Patch 607]] gave players the ability to use customs emotes:&lt;br /&gt;
*'''/em &amp;lt;custom emote text&amp;gt;''' ''Creates an emote without using an animation.''&lt;br /&gt;
*'''/&amp;lt;emote&amp;gt; none''' ''Does the respective emote animation without its text in chat.''&lt;br /&gt;
*'''/&amp;lt;emote&amp;gt; &amp;lt;custom emote text&amp;gt;''' ''Creates a custom emote similar to /em but by using the animation of the chosen existing emote.''&lt;br /&gt;
*'''/em &amp;lt;custom emote text&amp;gt; : &amp;lt;more custom emote text&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
==List of emotes==&lt;br /&gt;
/absentminded&lt;br /&gt;
&lt;br /&gt;
/adventurous&lt;br /&gt;
&lt;br /&gt;
/aggressive&lt;br /&gt;
&lt;br /&gt;
/agree&lt;br /&gt;
&lt;br /&gt;
/alert&lt;br /&gt;
&lt;br /&gt;
/altruist&lt;br /&gt;
&lt;br /&gt;
/amazed&lt;br /&gt;
&lt;br /&gt;
/ambivalent&lt;br /&gt;
&lt;br /&gt;
/amused&lt;br /&gt;
&lt;br /&gt;
/angry&lt;br /&gt;
&lt;br /&gt;
/annoyed&lt;br /&gt;
&lt;br /&gt;
/apathetic&lt;br /&gt;
&lt;br /&gt;
/approve&lt;br /&gt;
&lt;br /&gt;
/arrogant&lt;br /&gt;
&lt;br /&gt;
/ashamed&lt;br /&gt;
&lt;br /&gt;
/belligerent&lt;br /&gt;
&lt;br /&gt;
/bitter&lt;br /&gt;
&lt;br /&gt;
/bloodthirsty&lt;br /&gt;
&lt;br /&gt;
/bored&lt;br /&gt;
&lt;br /&gt;
/bow&lt;br /&gt;
&lt;br /&gt;
/brave&lt;br /&gt;
&lt;br /&gt;
/bubbly&lt;br /&gt;
&lt;br /&gt;
/burp&lt;br /&gt;
&lt;br /&gt;
/calm&lt;br /&gt;
&lt;br /&gt;
/calm Down&lt;br /&gt;
&lt;br /&gt;
/careful&lt;br /&gt;
&lt;br /&gt;
/careless&lt;br /&gt;
&lt;br /&gt;
/casual&lt;br /&gt;
&lt;br /&gt;
/chaotic&lt;br /&gt;
&lt;br /&gt;
/cheer&lt;br /&gt;
&lt;br /&gt;
/cold&lt;br /&gt;
&lt;br /&gt;
/compassionate&lt;br /&gt;
&lt;br /&gt;
/condescending&lt;br /&gt;
&lt;br /&gt;
/confident&lt;br /&gt;
&lt;br /&gt;
/confused&lt;br /&gt;
&lt;br /&gt;
/contemptuous&lt;br /&gt;
&lt;br /&gt;
/content&lt;br /&gt;
&lt;br /&gt;
/courageous&lt;br /&gt;
&lt;br /&gt;
/courtly&lt;br /&gt;
&lt;br /&gt;
/coward&lt;br /&gt;
&lt;br /&gt;
/crazy&lt;br /&gt;
&lt;br /&gt;
/crude&lt;br /&gt;
&lt;br /&gt;
/cruel&lt;br /&gt;
&lt;br /&gt;
/curious&lt;br /&gt;
&lt;br /&gt;
/cynical&lt;br /&gt;
&lt;br /&gt;
/dainty&lt;br /&gt;
&lt;br /&gt;
/dance&lt;br /&gt;
&lt;br /&gt;
/defensive&lt;br /&gt;
&lt;br /&gt;
/depressed&lt;br /&gt;
&lt;br /&gt;
/desire&lt;br /&gt;
&lt;br /&gt;
/despaired&lt;br /&gt;
&lt;br /&gt;
/destructive&lt;br /&gt;
&lt;br /&gt;
/die&lt;br /&gt;
&lt;br /&gt;
/dignified&lt;br /&gt;
&lt;br /&gt;
/diplomatic&lt;br /&gt;
&lt;br /&gt;
/disappointed&lt;br /&gt;
&lt;br /&gt;
/discreet&lt;br /&gt;
&lt;br /&gt;
/disdainful&lt;br /&gt;
&lt;br /&gt;
/disgruntled&lt;br /&gt;
&lt;br /&gt;
/disgusted&lt;br /&gt;
&lt;br /&gt;
/disillusioned&lt;br /&gt;
&lt;br /&gt;
/dismayed&lt;br /&gt;
&lt;br /&gt;
/disoriented&lt;br /&gt;
&lt;br /&gt;
/distracted&lt;br /&gt;
&lt;br /&gt;
/dramatic&lt;br /&gt;
&lt;br /&gt;
/dreamy&lt;br /&gt;
&lt;br /&gt;
/drunk&lt;br /&gt;
&lt;br /&gt;
/doubtful&lt;br /&gt;
&lt;br /&gt;
/dutiful&lt;br /&gt;
&lt;br /&gt;
/eager&lt;br /&gt;
&lt;br /&gt;
/earnest&lt;br /&gt;
&lt;br /&gt;
/ecstatic&lt;br /&gt;
&lt;br /&gt;
/egoistic&lt;br /&gt;
&lt;br /&gt;
/embarrassed&lt;br /&gt;
&lt;br /&gt;
/emotional&lt;br /&gt;
&lt;br /&gt;
/emotionless&lt;br /&gt;
&lt;br /&gt;
/empathic&lt;br /&gt;
&lt;br /&gt;
/encouraging&lt;br /&gt;
&lt;br /&gt;
/enraged&lt;br /&gt;
&lt;br /&gt;
/enthusiastic&lt;br /&gt;
&lt;br /&gt;
/envious&lt;br /&gt;
&lt;br /&gt;
/evil&lt;br /&gt;
&lt;br /&gt;
/excited&lt;br /&gt;
&lt;br /&gt;
/exercise&lt;br /&gt;
&lt;br /&gt;
/exhausted&lt;br /&gt;
&lt;br /&gt;
/exuberant&lt;br /&gt;
&lt;br /&gt;
/faithful&lt;br /&gt;
&lt;br /&gt;
/fanatical&lt;br /&gt;
&lt;br /&gt;
/fastidious&lt;br /&gt;
&lt;br /&gt;
/fearful&lt;br /&gt;
&lt;br /&gt;
/firm&lt;br /&gt;
&lt;br /&gt;
/forgive&lt;br /&gt;
&lt;br /&gt;
/fraternal&lt;br /&gt;
&lt;br /&gt;
/friendly&lt;br /&gt;
&lt;br /&gt;
/frustrated&lt;br /&gt;
&lt;br /&gt;
/funny&lt;br /&gt;
&lt;br /&gt;
/generous&lt;br /&gt;
&lt;br /&gt;
/gimme5&lt;br /&gt;
&lt;br /&gt;
/gloomy&lt;br /&gt;
&lt;br /&gt;
/goofy&lt;br /&gt;
&lt;br /&gt;
/great&lt;br /&gt;
&lt;br /&gt;
/grin&lt;br /&gt;
&lt;br /&gt;
/grumpy&lt;br /&gt;
&lt;br /&gt;
/guilty&lt;br /&gt;
&lt;br /&gt;
/happy&lt;br /&gt;
&lt;br /&gt;
/&amp;quot;hard silence&amp;quot;&lt;br /&gt;
&lt;br /&gt;
/haughty&lt;br /&gt;
&lt;br /&gt;
/helpful&lt;br /&gt;
&lt;br /&gt;
/heroic&lt;br /&gt;
&lt;br /&gt;
/hiha&lt;br /&gt;
&lt;br /&gt;
/&amp;quot;hold on&amp;quot;&lt;br /&gt;
&lt;br /&gt;
/honest&lt;br /&gt;
&lt;br /&gt;
/hopeful&lt;br /&gt;
&lt;br /&gt;
/hopeless&lt;br /&gt;
&lt;br /&gt;
/humble&lt;br /&gt;
&lt;br /&gt;
/hungry&lt;br /&gt;
&lt;br /&gt;
/hurried&lt;br /&gt;
&lt;br /&gt;
/hurry&lt;br /&gt;
&lt;br /&gt;
/hysterical&lt;br /&gt;
&lt;br /&gt;
/imploring&lt;br /&gt;
&lt;br /&gt;
/indifferent&lt;br /&gt;
&lt;br /&gt;
/indignant&lt;br /&gt;
&lt;br /&gt;
/indulgent&lt;br /&gt;
&lt;br /&gt;
/innocent&lt;br /&gt;
&lt;br /&gt;
/insecure&lt;br /&gt;
&lt;br /&gt;
/interested&lt;br /&gt;
&lt;br /&gt;
/jealous&lt;br /&gt;
&lt;br /&gt;
/joyful&lt;br /&gt;
&lt;br /&gt;
/kind&lt;br /&gt;
&lt;br /&gt;
/lazy&lt;br /&gt;
&lt;br /&gt;
/loathing&lt;br /&gt;
&lt;br /&gt;
/logical&lt;br /&gt;
&lt;br /&gt;
/lonely&lt;br /&gt;
&lt;br /&gt;
/loud&lt;br /&gt;
&lt;br /&gt;
/love&lt;br /&gt;
&lt;br /&gt;
/loyal&lt;br /&gt;
&lt;br /&gt;
/lustful&lt;br /&gt;
&lt;br /&gt;
/malevolent&lt;br /&gt;
&lt;br /&gt;
/malicious&lt;br /&gt;
&lt;br /&gt;
/mean&lt;br /&gt;
&lt;br /&gt;
/megalomaniac&lt;br /&gt;
&lt;br /&gt;
/merciful&lt;br /&gt;
&lt;br /&gt;
/mischievous&lt;br /&gt;
&lt;br /&gt;
/mocking&lt;br /&gt;
&lt;br /&gt;
/nervous&lt;br /&gt;
&lt;br /&gt;
/neutral&lt;br /&gt;
&lt;br /&gt;
/nice&lt;br /&gt;
&lt;br /&gt;
/&amp;quot;no clue&amp;quot;&lt;br /&gt;
&lt;br /&gt;
/none&lt;br /&gt;
&lt;br /&gt;
/nostalgic&lt;br /&gt;
&lt;br /&gt;
/obnoxious&lt;br /&gt;
&lt;br /&gt;
/obscure&lt;br /&gt;
&lt;br /&gt;
/obsessed&lt;br /&gt;
&lt;br /&gt;
/offended&lt;br /&gt;
&lt;br /&gt;
/optimistic&lt;br /&gt;
&lt;br /&gt;
/over&lt;br /&gt;
&lt;br /&gt;
/pacific&lt;br /&gt;
&lt;br /&gt;
/painful&lt;br /&gt;
&lt;br /&gt;
/panic&lt;br /&gt;
&lt;br /&gt;
/patient&lt;br /&gt;
&lt;br /&gt;
/patriotic&lt;br /&gt;
&lt;br /&gt;
/pedantic&lt;br /&gt;
&lt;br /&gt;
/perturbed&lt;br /&gt;
&lt;br /&gt;
/pessimistic&lt;br /&gt;
&lt;br /&gt;
/petulant&lt;br /&gt;
&lt;br /&gt;
/philosophical&lt;br /&gt;
&lt;br /&gt;
/pitying&lt;br /&gt;
&lt;br /&gt;
/playful&lt;br /&gt;
&lt;br /&gt;
/pleased&lt;br /&gt;
&lt;br /&gt;
/polite&lt;br /&gt;
&lt;br /&gt;
/point&lt;br /&gt;
&lt;br /&gt;
/&amp;quot;point back&amp;quot;&lt;br /&gt;
&lt;br /&gt;
/&amp;quot;point front&amp;quot;&lt;br /&gt;
&lt;br /&gt;
/&amp;quot;point left&amp;quot;&lt;br /&gt;
&lt;br /&gt;
/&amp;quot;point right&amp;quot;&lt;br /&gt;
&lt;br /&gt;
/pompous&lt;br /&gt;
&lt;br /&gt;
/powerful&lt;br /&gt;
&lt;br /&gt;
/praying&lt;br /&gt;
&lt;br /&gt;
/proud&lt;br /&gt;
&lt;br /&gt;
/provocative&lt;br /&gt;
&lt;br /&gt;
/puzzled&lt;br /&gt;
&lt;br /&gt;
/quiet&lt;br /&gt;
&lt;br /&gt;
/ready&lt;br /&gt;
&lt;br /&gt;
/reassured&lt;br /&gt;
&lt;br /&gt;
/rebellious&lt;br /&gt;
&lt;br /&gt;
/reckless&lt;br /&gt;
&lt;br /&gt;
/regretful&lt;br /&gt;
&lt;br /&gt;
/relaxed&lt;br /&gt;
&lt;br /&gt;
/relieved&lt;br /&gt;
&lt;br /&gt;
/reluctant&lt;br /&gt;
&lt;br /&gt;
/remorseful&lt;br /&gt;
&lt;br /&gt;
/resigned&lt;br /&gt;
&lt;br /&gt;
/respectful&lt;br /&gt;
&lt;br /&gt;
/revengeful&lt;br /&gt;
&lt;br /&gt;
/rice&lt;br /&gt;
&lt;br /&gt;
/ridicule&lt;br /&gt;
&lt;br /&gt;
/righteous&lt;br /&gt;
&lt;br /&gt;
/romantic&lt;br /&gt;
&lt;br /&gt;
/rude&lt;br /&gt;
&lt;br /&gt;
/sad&lt;br /&gt;
&lt;br /&gt;
/sarcastic&lt;br /&gt;
&lt;br /&gt;
/scared&lt;br /&gt;
&lt;br /&gt;
/scolding&lt;br /&gt;
&lt;br /&gt;
/sedate&lt;br /&gt;
&lt;br /&gt;
/selfish&lt;br /&gt;
&lt;br /&gt;
/serious&lt;br /&gt;
&lt;br /&gt;
/shameless&lt;br /&gt;
&lt;br /&gt;
/sheepish&lt;br /&gt;
&lt;br /&gt;
/shifty&lt;br /&gt;
&lt;br /&gt;
/shocked&lt;br /&gt;
&lt;br /&gt;
/shut Up&lt;br /&gt;
&lt;br /&gt;
/shy&lt;br /&gt;
&lt;br /&gt;
/sigh&lt;br /&gt;
&lt;br /&gt;
/silence&lt;br /&gt;
&lt;br /&gt;
/silly&lt;br /&gt;
&lt;br /&gt;
/sincerely&lt;br /&gt;
&lt;br /&gt;
/sleepy&lt;br /&gt;
&lt;br /&gt;
/sly&lt;br /&gt;
&lt;br /&gt;
/smack&lt;br /&gt;
&lt;br /&gt;
/smug&lt;br /&gt;
&lt;br /&gt;
/sorry&lt;br /&gt;
&lt;br /&gt;
/spiteful&lt;br /&gt;
&lt;br /&gt;
/squeamish&lt;br /&gt;
&lt;br /&gt;
/strong&lt;br /&gt;
&lt;br /&gt;
/stubborn&lt;br /&gt;
&lt;br /&gt;
/suffering&lt;br /&gt;
&lt;br /&gt;
/surprised&lt;br /&gt;
&lt;br /&gt;
/suspicious&lt;br /&gt;
&lt;br /&gt;
/taunting&lt;br /&gt;
&lt;br /&gt;
/terrified&lt;br /&gt;
&lt;br /&gt;
/thankful&lt;br /&gt;
&lt;br /&gt;
/thirsty&lt;br /&gt;
&lt;br /&gt;
/thoughtful&lt;br /&gt;
&lt;br /&gt;
/tired&lt;br /&gt;
&lt;br /&gt;
/tolerant&lt;br /&gt;
&lt;br /&gt;
/troubled&lt;br /&gt;
&lt;br /&gt;
/uncertain&lt;br /&gt;
&lt;br /&gt;
/unhappy&lt;br /&gt;
&lt;br /&gt;
/unwilling&lt;br /&gt;
&lt;br /&gt;
/vengeful&lt;br /&gt;
&lt;br /&gt;
/wait&lt;br /&gt;
&lt;br /&gt;
/warm&lt;br /&gt;
&lt;br /&gt;
/wary&lt;br /&gt;
&lt;br /&gt;
/wave&lt;br /&gt;
&lt;br /&gt;
/whine&lt;br /&gt;
&lt;br /&gt;
/wicked&lt;br /&gt;
&lt;br /&gt;
/wise&lt;br /&gt;
&lt;br /&gt;
/wistful&lt;br /&gt;
&lt;br /&gt;
/worried&lt;br /&gt;
&lt;br /&gt;
/wounded&lt;br /&gt;
&lt;br /&gt;
/yawn&lt;br /&gt;
&lt;br /&gt;
/&amp;quot;you and me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Special command]]s&lt;br /&gt;
&lt;br /&gt;
[[Category:Commands]]&lt;/div&gt;</summary>
		<author><name>Kaikyo</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/w/index.php?title=Zora&amp;diff=11793</id>
		<title>Zora</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/w/index.php?title=Zora&amp;diff=11793"/>
				<updated>2012-04-03T19:46:41Z</updated>
		
		<summary type="html">&lt;p&gt;Kaikyo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{SettleInfoBox&lt;br /&gt;
|image=Zora.jpg&lt;br /&gt;
|region=Cities of Intuition&lt;br /&gt;
|continent=Witherings&lt;br /&gt;
|q=100&lt;br /&gt;
|altar=Kami and Karavan&lt;br /&gt;
|}}&lt;br /&gt;
Zora is the captial city of the [[Zorai|Zoraï]] people. The city is located in the thick goo infested jungles, called [[Witherings|The Witherings]]. The city was built after the [[Races of Atys|homins]] emerged above the ground again, and was named after their long lost capital city, [[Zoran]].&lt;br /&gt;
&lt;br /&gt;
The city provides many services and is where apartments in the Zoraï jungles can be purchased. Within the city is also a [[Kami]] Altar, with its [[Karavan]] counterpart just outside the boundaries of Zora.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
Zora was founded in 2483 right after the Zoraï first appeared in the Witherings. The great Zoraï sage, Fung-Tun, directed the Zoraï leader, Hoi-Cho, to a place of high magnetism where the capital city was founded. It's named Zora in memory of the multitudes who died in Zoran, the devastated capital of the old lands. Leaving out the defensive walls which prevented Zoraï from escaping the [[kitin]] during the invasion of Zoran, Zora is instead built in hollows in the bark to allow for better defence in anticipation of kitin attack.&lt;br /&gt;
&lt;br /&gt;
Zora has remained as the capital of the Zoraï and the center from which they oppose their influence on the [[Witherings]] ever since. Though it lies in the [[Cities of Intuition]] region, it immediately borders the [[Haven of Purity]] and [[Knot of Dementia]] regions as well.&lt;br /&gt;
&lt;br /&gt;
== Districts ==&lt;br /&gt;
As seen on the right, the city of Zora is roughly in the shape of a square, though natural walls in the bark separate the northwestern parts of the city from the southeastern parts. The city is split up in six districts:&lt;br /&gt;
&lt;br /&gt;
*'''Goo Chase District :''' The southeastern part of the city, including the main gate to [[Cities of Intuition]]. Goo Chase District holds the stables, the [[Kami]] altar, the city welcomer and tourist guide, the bar, the [[Ring]] terminal, the [[wheel of fortune]], some trainers, a corporal and an overseer.&lt;br /&gt;
*'''Highmart District :''' The southern part of the city, including the Zora city hall. Highmart District also holds the market selling up to quality 50, the Dynastic Merchant, a corporal and a messenger. The city hall in this district contains the ambassadors for all the other [[homin races]], the Intendant, the Guild Clerk where new [[guild]]s can be created, and the Dynastic Magistrates who grant Zoraï citizenship.&lt;br /&gt;
*'''Temple Hall District :''' The central part of the city, and the part with the most activity. Temple Hall District holds the Temple Hall where meetings are often held, as well as the market that sells up to quality 100, the [[cosmetics]] shops, some apartments, the Kitin Observer, the Sage, the suppliers, a corporal and an overseer.&lt;br /&gt;
*'''Daïsha Estate :''' The northeastern part of the city, which has some city gates leading to [[Haven of Purity]]. Daïsha Estate also holds the master [[Medic]], a tourist guide, some apartments, and a pretty building with a fountain and a Kami Master inside.&lt;br /&gt;
*'''Win-Cho Estate :''' The northwestern part of the city, which has some city gates leading to [[Knot of Dementia]]. Win-Cho Estate also holds the master [[Magnetic Cartographer]], the [[outpost Produce|outpost plan]] trainers, some [[guild hall]]s, some trainers, a jewel merchant selling up to quality 100 and a tourist guide.&lt;br /&gt;
*'''West Hollow District :''' The southwestern part of the city, and probably the most isolated district. West Hollow District holds some [[guild hall]]s and a jewel merchant selling up to quality 50, and not much else.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*'''Cemetery District :''' The seventh district isn't inside the city itself, but can only be accessed through the city. It lies east from the Goo Chase district and holds the city's cemetery.&lt;br /&gt;
&lt;br /&gt;
==City Residents==&lt;br /&gt;
&lt;br /&gt;
*'''Ambassador :'''Be'Darins Breggie &lt;br /&gt;
*'''Ambassador :'''Vara Frechini &lt;br /&gt;
*'''Ambassador :'''Xyrius Zessen &lt;br /&gt;
*'''Apprentice Overseer :'''Liangi Vo-Nuang &lt;br /&gt;
*'''Apprentice Overseer :'''Nai-Da Fuangi &lt;br /&gt;
*'''Barman :'''Fai-Cu Fung &lt;br /&gt;
*'''Big Trepan Crafter :'''Tanan Be'Ledorn&lt;br /&gt;
*'''Brotherhood of the Fortunate Gubani	:'''Be'Dardan Garnan&lt;br /&gt;
*'''City Welcomer :'''Sai-Ju Fuangi &lt;br /&gt;
*'''Corporal :'''Hon Sai-Fuang &lt;br /&gt;
*'''Corporal :'''Mi Pa-Sang &lt;br /&gt;
*'''Corporal :'''Shuai-Nang Ciai &lt;br /&gt;
*'''Crafter Trainer:'''Fung Bai-Kung &lt;br /&gt;
*'''Crafter Trainer:'''Pu-Fu Vang &lt;br /&gt;
*'''Dynastic Magistrate :''' Liao Fa-Ling&lt;br /&gt;
*'''Dynastic Merchant: '''Tao Ne-Tao&lt;br /&gt;
*'''Female Hairdresser :'''chochoi &lt;br /&gt;
*'''Female Tattooer :'''Cai-Ci Vang &lt;br /&gt;
*'''Fighter Trainer:'''Hiai-Kang Hon &lt;br /&gt;
*'''Fighter Trainer :'''Tao Nai-Da &lt;br /&gt;
*'''Guard Chief :'''Shuai-Chon Vao &lt;br /&gt;
*'''Guild Apartment Caretaker :'''Dai-Fan Luoi &lt;br /&gt;
*'''Guild Apartment Caretaker :'''Kei-Yao Din &lt;br /&gt;
*'''Guild Apartment Caretaker :'''La-Viang Cuo &lt;br /&gt;
*'''Guild Apartment Caretaker :'''Sai-Ju Dao &lt;br /&gt;
*'''Guild Apartment Caretaker :'''She-Jua Len &lt;br /&gt;
*'''Guild Apartment Caretaker :'''Shuai-Nang Len &lt;br /&gt;
*'''Guild Clerk :'''Fuan Shu-Quan &lt;br /&gt;
*'''Guild Dynastic Magistrate :''' Onaru Wu-Seng&lt;br /&gt;
*'''Harvester Trainer:'''Hiang Vo-Nuang &lt;br /&gt;
*'''Harvester Trainer:'''Shuai-Chon Ki &lt;br /&gt;
*'''Heavy Armor Merchant :'''Fung Nai-Da &lt;br /&gt;
*'''Heavy Armor Merchant :'''Vang La-Po &lt;br /&gt;
*'''Homin Apartment Caretaker :'''Dai-Fan Liangi &lt;br /&gt;
*'''Homin Apartment Caretaker :'''Gai-Guan Len &lt;br /&gt;
*'''Homin Apartment Caretaker :'''La-Viang Chi &lt;br /&gt;
*'''Homin Apartment Caretaker :'''Qu-Bin Bian &lt;br /&gt;
*'''Homin Apartment Caretaker :'''Sai-Ju Din &lt;br /&gt;
*'''Homin Apartment Caretaker :'''Shuai-Nang Biani &lt;br /&gt;
*'''Intendant :'''La-Po Len &lt;br /&gt;
*'''Jewel Merchant :'''Pei-Jeng Fuan &lt;br /&gt;
*'''Jewel Merchant :'''Xo-Yuang Biani &lt;br /&gt;
*'''Light Armor Merchant :'''Chaoi Zai-Suo &lt;br /&gt;
*'''Light Armor Merchant :'''Tao Ba-Ben &lt;br /&gt;
*'''Local Messenger :'''Ki Tei-Woo &lt;br /&gt;
*'''Local Messenger :'''Shua-Lao Zhuangi &lt;br /&gt;
*'''Local Supplier :'''Luoi Bai-Kung &lt;br /&gt;
*'''Local Supplier :'''Qui-Le Bian &lt;br /&gt;
*'''Lodge Master :'''Jalius Dessen&lt;br /&gt;
*'''Magician Trainer:'''Kai-Feo Guai &lt;br /&gt;
*'''Magician Trainer:'''Zhao Shuai-Nang &lt;br /&gt;
*'''Male Hairdresser :'''She-Jua Ge &lt;br /&gt;
*'''Male Tattooer :'''Ba-Nung Cioi &lt;br /&gt;
*'''Master Medic :'''Kia Bo-Boo&lt;br /&gt;
*'''Master Cartographer :'''Reka Qe-Wung&lt;br /&gt;
*'''Medium Armor Merchant :'''Geng Bai-Fuang &lt;br /&gt;
*'''Medium Armor Merchant :'''Vang Tei-Woo &lt;br /&gt;
*'''Melee Weapon Merchant :'''Mu So-Suang &lt;br /&gt;
*'''Melee Weapon Merchant :'''Nao Li-Qiao &lt;br /&gt;
*'''Melee Weapon Merchant :'''Sun Nai-Da &lt;br /&gt;
*'''Melee Weapon Merchant :'''Tao Bai-Kung &lt;br /&gt;
*'''Range Weapon Merchant :'''Geng Xo-Yuang &lt;br /&gt;
*'''Range Weapon Merchant :'''Jeoi Li-Qiao &lt;br /&gt;
*'''Raw Materials Merchant :'''Vao Pei-Ziao &lt;br /&gt;
*'''Raw Materials Merchant :'''Zhao Ma-Seng &lt;br /&gt;
*'''Restoration Specialist :'''Fontaine&lt;br /&gt;
*'''Sage :'''Cai-Ci Du &lt;br /&gt;
*'''Stable Boy :'''Vao Pa-Sang &lt;br /&gt;
*'''Tools Merchant :'''Hiang Zai-Suo &lt;br /&gt;
*'''Tools Merchant :'''Pu-Fu Tao &lt;br /&gt;
*'''Tree-Bore Crafter :'''Nako Sam-Lin&lt;br /&gt;
*'''Zoraï Representative :'''Ba-Ci Du&lt;br /&gt;
*Cities of Intuition Kami Welcomer &lt;br /&gt;
*Cities of Intuition Karavan Welcomer &lt;br /&gt;
*Kitin Observer of the West&lt;br /&gt;
*Ring Technician&lt;br /&gt;
*Wu Zhong&lt;br /&gt;
*Zora Kami Master &lt;br /&gt;
*Zora Tourist Guide&lt;br /&gt;
*Zora Tourist Guide&lt;br /&gt;
*Zora Tourist Guide&lt;br /&gt;
&lt;br /&gt;
{{Areas Jungle}}&lt;br /&gt;
[[de:Zora]]&lt;br /&gt;
[[fr:Zora]]&lt;/div&gt;</summary>
		<author><name>Kaikyo</name></author>	</entry>

	</feed>