<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://graalonline.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Seich</id>
	<title>Graal Bible - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://graalonline.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Seich"/>
	<link rel="alternate" type="text/html" href="https://graalonline.net/Special:Contributions/Seich"/>
	<updated>2026-04-09T20:45:38Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.4</generator>
	<entry>
		<id>https://graalonline.net/index.php?title=Creation/Management/Remote_Control/Linux&amp;diff=18316</id>
		<title>Creation/Management/Remote Control/Linux</title>
		<link rel="alternate" type="text/html" href="https://graalonline.net/index.php?title=Creation/Management/Remote_Control/Linux&amp;diff=18316"/>
		<updated>2011-05-13T22:24:07Z</updated>

		<summary type="html">&lt;p&gt;Seich: /* Fix */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Linux]][[Category:Remote Control]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Because of the variety of [[Linux|Linux]] Operating Systems available problems might raise when using [[Graal|GraalOnline]] software. This page will outline a few known problems and solutions on how to fix them.&lt;br /&gt;
&lt;br /&gt;
=== Installation ===&lt;br /&gt;
&lt;br /&gt;
To watch a video on how to install the Remote Control [http://www.youtube.com/watch?v=HAooXhvDFUI click here].&lt;br /&gt;
&lt;br /&gt;
==== Downloading ====&lt;br /&gt;
The [[Creation/Management/Remote Control|Remote Control]] client can be downloaded from either [http://www.graalonline.com www.graalonline.com] @ [http://www.graalonline.com/playerworlds/downloads/file?name=rc.tgz RC Download] or as an [[Creation/Dev/Update Packages|installation package]] from the [[Worlds/Login|Login Server]].&lt;br /&gt;
&lt;br /&gt;
===== Remote Conrol Downloads =====&lt;br /&gt;
* [http://www.graalonline.com/playerworlds/downloads/file?name=rc.tgz Remote Control - 32bit]&lt;br /&gt;
* [http://forums.graalonline.com/forums/attachment.php?attachmentid=50775&amp;amp;d=1269899 Remote Control - 64bit]&lt;br /&gt;
&lt;br /&gt;
==== Extracting ====&lt;br /&gt;
If the [[Creation/Management/Remote Control|Remote Control]] client was downloaded using the [http://www.graalonline.com www.graalonline.com] method enter the following commands into a Terminal session:&lt;br /&gt;
&lt;br /&gt;
  cd /path/to/download/directory&lt;br /&gt;
  mv rc.tgz ~/.graal/graal4/&lt;br /&gt;
  cd ~/.graal/graal4/&lt;br /&gt;
  tar -xzf rc.tgz rc&lt;br /&gt;
  rm rc.tgz&lt;br /&gt;
&lt;br /&gt;
If the [[Creation/Management/Remote Control|Remote Control]] client was downloaded using the [[Worlds/Login|Login Server]] method enter the following commands into a Terminal session:&lt;br /&gt;
&lt;br /&gt;
  cd ~/.graal/graal4/rc&lt;br /&gt;
  mv rc.tgz ~/.graal/graal4/&lt;br /&gt;
  cd ~/.graal/graal4/&lt;br /&gt;
  tar -xzf rc.tgz rc&lt;br /&gt;
  rm rc.tgz&lt;br /&gt;
&lt;br /&gt;
=== Remote Control Directories ===&lt;br /&gt;
The [[Creation/Management/Remote Control|Remote Control]] client uses 2 directories within the [[Graal root directory|graal root directory]]. The first directory is: ~/.graal/rc which stores the control2config.txt configuration file, [[PM|private messages]], and [[player]] profiles. The second directory stores the language-specs, images, and the executable file located at ~/.graal/graal4/rc/.&lt;br /&gt;
&lt;br /&gt;
=== Additional Packages ===&lt;br /&gt;
If the [[Creation/Management/Remote Control|Remote Control]] client is failing to launch the current [[Linux|Linux]] Distribution may not provide the packages needed to launch the client. Attempting to launch the [[Creation/Management/Remote Control|Remote Control]] client in a Terminal session will outline the missing packages the Distribution is missing.&lt;br /&gt;
&lt;br /&gt;
  cd ~/.graal/graal4/rc/&lt;br /&gt;
  ./rc&lt;br /&gt;
&lt;br /&gt;
=== Remote Control from any Directory ===&lt;br /&gt;
To begin with the [[Linux|Linux]] [[Creation/Management/Remote Control|Remote Control]] client can only be launched from the directory it is executed from without crashing due to not being able to find the images used by the graphical interface of the [[Creation/Management/Remote Control|Remote Control]] client. This disallows the user to create a shortcut for the client.&lt;br /&gt;
&lt;br /&gt;
==== Fixes ====&lt;br /&gt;
===== Fix 1 =====&lt;br /&gt;
Open a Terminal session and type the commands below:&lt;br /&gt;
 &lt;br /&gt;
  cd ~/.graal/graal4/rc/&lt;br /&gt;
  mv rc rc_bin&lt;br /&gt;
  nano rc&lt;br /&gt;
&lt;br /&gt;
Using the text editor 'nano' type in the following:&lt;br /&gt;
&lt;br /&gt;
  #!/bin/sh&lt;br /&gt;
  cd ~/.graal/graal4/rc/&lt;br /&gt;
  exec ~/.graal/graal4/rc/rc_bin&lt;br /&gt;
&lt;br /&gt;
Now set execute permissions so you can launch the file:&lt;br /&gt;
&lt;br /&gt;
  chmod +x rc&lt;br /&gt;
&lt;br /&gt;
This should allow the [[Creation/Management/Remote Control|Remote Control]] client to be launched from any directory as a shortcut (or a launcher, as linux calls it).&lt;br /&gt;
===== Fix 2 =====&lt;br /&gt;
Another possible fix is to create a launcher to the rc. Then open this launcher in a notepad. It'll look something like this:&lt;br /&gt;
&lt;br /&gt;
  #!/usr/bin/env xdg-open&lt;br /&gt;
  [Desktop Entry]&lt;br /&gt;
  Version=1.0&lt;br /&gt;
  Type=Application&lt;br /&gt;
  Terminal=false&lt;br /&gt;
  Icon[en_US]=gnome-panel-launcher&lt;br /&gt;
  Name[en_US]=Graal RC&lt;br /&gt;
  Exec=/home/seich/.graal/graal4/rc/rc&lt;br /&gt;
  Name=Graal RC&lt;br /&gt;
  Icon=gnome-panel-launcher&lt;br /&gt;
&lt;br /&gt;
You can then edit the line that says Exec=/home/seich/.graal/graal4/rc/rc to:&lt;br /&gt;
  sh -c &amp;quot;cd ~/.graal/graal4/rc/ &amp;amp;&amp;amp; ./rc&amp;quot;&lt;br /&gt;
Just make sure you're using the right path. At the end, the file should look like this:&lt;br /&gt;
&lt;br /&gt;
  #!/usr/bin/env xdg-open&lt;br /&gt;
  [Desktop Entry]&lt;br /&gt;
  Version=1.0&lt;br /&gt;
  Type=Application&lt;br /&gt;
  Terminal=false&lt;br /&gt;
  Icon[en_US]=gnome-panel-launcher&lt;br /&gt;
  Name[en_US]=Graal RC&lt;br /&gt;
  Exec=sh -c &amp;quot;cd ~/.graal/graal4/rc/ &amp;amp;&amp;amp; ./rc&amp;quot;&lt;br /&gt;
  Name=Graal RC&lt;br /&gt;
  Icon=gnome-panel-launcher&lt;br /&gt;
In here you are basically executing the command directly from the launcher. It doesn't require to create a separate file for it making it a little cleaner.&lt;br /&gt;
&lt;br /&gt;
=== Launching Remote Control on Ubuntu 9.10 ===&lt;br /&gt;
Initially, Ubuntu 9.10 doesn't contain the package 'libgtksourceview1.0-0' which is needed to launch the [[Graal|Graal]] [[Creation/Management/Remote Control|Remote Control]] client.&lt;br /&gt;
&lt;br /&gt;
==== Fix ====&lt;br /&gt;
To fix this problem simply install the package 'libgtksourceview1.0-0' by typing the following into a Terminal session:&lt;br /&gt;
&lt;br /&gt;
  sudo apt-get install libgtksourceview1.0-0&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* [http://forums.graalonline.com/forums/showthread.php?t=86798 Graal Communication Center - Graphical RC on ubuntu]&lt;br /&gt;
* [http://forums.graalonline.com/forums/showthread.php?t=86244 Graal Communication Center - &amp;lt;nowiki&amp;gt;[How To]&amp;lt;/nowiki&amp;gt; Get RC Working on openSuSE (Linux)]&lt;br /&gt;
* [http://forums.graalonline.com/forums/showthread.php?t=134257878 Graal Communication Center - Ubuntu 9.10 rc solution]&lt;br /&gt;
* [http://forums.graalonline.com/forums/showthread.php?t=134257505 Graal Communication Center - Ubuntu Graal Folder]&lt;br /&gt;
* [http://forums.graalonline.com/forums/showthread.php?t=87620 Graal Communication Center - Linux - libgtksourceview-1.0.so.0]&lt;br /&gt;
* [http://forums.graalonline.com/forums/showthread.php?p=1613297 Graal Communication Center - Linux Remote Control]&lt;br /&gt;
* [http://forums.graalonline.com/forums/showthread.php?t=134263104 Graal Communication Center - RC in 64bit Linux]&lt;br /&gt;
* [http://www.youtube.com/watch?v=HAooXhvDFUI Youtube - How to install the GraalOnline Remote Control on Linux]&lt;/div&gt;</summary>
		<author><name>Seich</name></author>
	</entry>
	<entry>
		<id>https://graalonline.net/index.php?title=User:Seich&amp;diff=18271</id>
		<title>User:Seich</title>
		<link rel="alternate" type="text/html" href="https://graalonline.net/index.php?title=User:Seich&amp;diff=18271"/>
		<updated>2011-05-08T19:05:23Z</updated>

		<summary type="html">&lt;p&gt;Seich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Users]]&lt;br /&gt;
Seich A.K.A. Seichleon or as Ceo Díaz in-game. Seich is one multi-talented Developer, new to scripting, but experienced in GANIing and level making.&lt;br /&gt;
&lt;br /&gt;
== Development Areas ==&lt;br /&gt;
&lt;br /&gt;
Seich, started as a LAT, in some unknown server around 2005 since, then he has left the game twice and has recently reappeared to start developing again. &lt;br /&gt;
&lt;br /&gt;
He is a talented scripter, with past experience in languages like PHP and C++. He used to Gat but, doesn't do so anymore. According to popular opinion, Seich's best ability is GANIing, he hates it though. His is an excellent Modern LAT which is an inherited trait from working mostly on UC modern servers.&lt;br /&gt;
&lt;br /&gt;
He is mostly known as the manager of Noctorious and as Server Administrator of The light.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
=== Current Projects ===&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Name&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Location&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Position&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Comments&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Noctorious&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Noctorious&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Manager&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Past Experienced ===&lt;br /&gt;
&lt;br /&gt;
This experience is only from 2008 to the present anything before 2008 is not recorded.&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Name&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Location&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Position&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Comments&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The Light&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Server Admin&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Urbia City&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Urbia City&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Developer&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Ages&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Ages&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;IDK&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Dev Clockwork&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Clockwork&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gani maker&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Dev Greenday&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Dev Greenday&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Server Admin&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Seich</name></author>
	</entry>
	<entry>
		<id>https://graalonline.net/index.php?title=User:Seich&amp;diff=11559</id>
		<title>User:Seich</title>
		<link rel="alternate" type="text/html" href="https://graalonline.net/index.php?title=User:Seich&amp;diff=11559"/>
		<updated>2009-01-21T09:12:06Z</updated>

		<summary type="html">&lt;p&gt;Seich: /* Past Experienced */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Seich A.K.A. Seichleon, known as Ceo Díaz in-game. Seich is one multi-talented Developer, new to scripting, but experienced in gani and level making.&lt;br /&gt;
&lt;br /&gt;
== Development Areas ==&lt;br /&gt;
&lt;br /&gt;
Seich, started as a LAT, in some unknown server around years 2005-04, since then he has left the game twice and has recently reappeared, on 2008 to start developing again. &lt;br /&gt;
&lt;br /&gt;
He is a talented scripter, with talent that comes from his past experience as a c++/php programmer. He has lost most of his ability on GATing which is why, he doesn't do it anymore. According to popular opinion, Seich's best ability is that of GANIing. His is a excellent Modern LAT, and a great classic lat, with a style that can easily adapt itself to any server.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
=== Current Projects ===&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Name&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Location&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Position&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Comments&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Noctorious&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Noctorious&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Manager&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Past Experienced ===&lt;br /&gt;
&lt;br /&gt;
This experience is only from 2008 to the present anything before 2008 is not recorded.&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Name&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Location&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Position&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Comments&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The Light&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Server Admin&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;It is closed now.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Kriegzone&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Kriegzone&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;LAT,GANI,GAT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;I am not proud of this.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Urbia City&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Urbia City&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Developer&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Ages&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Ages&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;IDK&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;I don't know what was my job here.. so i quitted.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Dev Clockwork&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Clockwork&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gani maker&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Seich</name></author>
	</entry>
	<entry>
		<id>https://graalonline.net/index.php?title=User:Seich&amp;diff=11558</id>
		<title>User:Seich</title>
		<link rel="alternate" type="text/html" href="https://graalonline.net/index.php?title=User:Seich&amp;diff=11558"/>
		<updated>2009-01-21T09:11:53Z</updated>

		<summary type="html">&lt;p&gt;Seich: /* Current Projects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Seich A.K.A. Seichleon, known as Ceo Díaz in-game. Seich is one multi-talented Developer, new to scripting, but experienced in gani and level making.&lt;br /&gt;
&lt;br /&gt;
== Development Areas ==&lt;br /&gt;
&lt;br /&gt;
Seich, started as a LAT, in some unknown server around years 2005-04, since then he has left the game twice and has recently reappeared, on 2008 to start developing again. &lt;br /&gt;
&lt;br /&gt;
He is a talented scripter, with talent that comes from his past experience as a c++/php programmer. He has lost most of his ability on GATing which is why, he doesn't do it anymore. According to popular opinion, Seich's best ability is that of GANIing. His is a excellent Modern LAT, and a great classic lat, with a style that can easily adapt itself to any server.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
=== Current Projects ===&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Name&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Location&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Position&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Comments&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Noctorious&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Noctorious&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Manager&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Past Experienced ===&lt;br /&gt;
&lt;br /&gt;
This experience is only from 2008 to the present anything before 2008 is not recorded.&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Name&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Location&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Position&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Comments&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The Light&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Server Admin&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;It is closed now.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Kriegzone&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Kriegzone&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;LAT,GANI,GAT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;I am not proud of this.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Urbia City&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Urbia City&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Developer&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Ages&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Ages&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;IDK&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;I don't know what was my job here.. so i quitted.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Seich</name></author>
	</entry>
	<entry>
		<id>https://graalonline.net/index.php?title=User:Seich&amp;diff=11255</id>
		<title>User:Seich</title>
		<link rel="alternate" type="text/html" href="https://graalonline.net/index.php?title=User:Seich&amp;diff=11255"/>
		<updated>2008-10-29T02:38:23Z</updated>

		<summary type="html">&lt;p&gt;Seich: New page: Seich A.K.A. Seichleon, known as Ceo Díaz in-game. Seich is one multi-talented Developer, new to scripting, but experienced in gani and level making.  == Development Areas ==  Seich, star...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Seich A.K.A. Seichleon, known as Ceo Díaz in-game. Seich is one multi-talented Developer, new to scripting, but experienced in gani and level making.&lt;br /&gt;
&lt;br /&gt;
== Development Areas ==&lt;br /&gt;
&lt;br /&gt;
Seich, started as a LAT, in some unknown server around years 2005-04, since then he has left the game twice and has recently reappeared, on 2008 to start developing again. &lt;br /&gt;
&lt;br /&gt;
He is a talented scripter, with talent that comes from his past experience as a c++/php programmer. He has lost most of his ability on GATing which is why, he doesn't do it anymore. According to popular opinion, Seich's best ability is that of GANIing. His is a excellent Modern LAT, and a great classic lat, with a style that can easily adapt itself to any server.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
=== Current Projects ===&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Name&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Location&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Position&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Comments&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Noctorious&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Noctorious&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Manager&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Dev Clockwork&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Clockwork&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gani maker&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
=== Past Experienced ===&lt;br /&gt;
&lt;br /&gt;
This experience is only from 2008 to the present anything before 2008 is not recorded.&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Name&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Location&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Position&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;b&amp;gt;Comments&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The Light&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Server Admin&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;It is closed now.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Kriegzone&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Kriegzone&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;LAT,GANI,GAT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;I am not proud of this.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Urbia City&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Urbia City&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Developer&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;None&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Ages&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Ages&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;IDK&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;I don't know what was my job here.. so i quitted.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Seich</name></author>
	</entry>
</feed>