That's the FAQ for Flobase's signature generator you can find there: http://www.florensia-base.com/sigusercreate.php
You waited so long... and now here it is:
How to create your own signature?
FloBase has a very dynamical signature script and you can create your own template and provide your signature the whole community.
If it's a nice one and the users like it I'll include it to the list on the mainpage so all users can use
your signature.
What you need first?
First of all you need a picture - the background.
If you found or created one you're ready for the next step.
Please respect any copyright when uploading/using pictures.
Start: Global tags
The most difficulty step is to create the template for your signature.
All templates are written in <xml> and if you have some knowledge of html it's not a big deal - and if not - nvm

All templates begins with:
Between these tags we're writing our data e.g. where to display the nickname, level or server name.
There are two main tags:
Code:
<global></global>
<char></char>
Into the <global> tag you write all attributes which will be aply to the whole signature - except you specify something different in a subtag but this I'll explain later on.
Each <char> tag stands for a slot where you could insert a character.
Attribute tags
Ok, first the attributes you can use:
Code:
<font>
<color>150,0,40</color>
<align>right</align>
<size>28</size>
<bordercolor>255,255,255</bordercolor>
<bordersize>1</bordersize>
<bold>0</bold>
<angle>0</angle>
<file>Nightmare_Hero_Normal.ttf</file>
</font>
<color> Color of the font, specified in R,G,B - Default: 0,0,0 (Black)
<align> Alignment, right, center or left is possible - Default: left
<size> Fontsize in px - Default: 10
<bordercolor> color of the border around your signs, specified in R,G,B - Default: not specified/no border
<bordersize> width of the border around your signs specified in px - Default: not specified/no border
<file> which font to use. you will have a default pool of fonts to use. If you have another font without copyright/for free use you want to use, contact an administrator - Default: Verdana.ttf
<bold> Makes the font bolder, specified in pixel - Default: 0
<angle> rotates the font, specified in degrees (0-360) - Default: 0
The attributes can be use in the <global> tag, in the <char> tag or, which I'll explain in the next break, in all section tags.
The script will use attributes like this:
section tags over char tags over global tag
So if something is specified in the section tag it will overwrite the char or global one.
Or you specified sth. in the char tag it will overwrite your specified global attribute for the whole character.
Section tags
The section tags - with these tags you specify the data which will be written on the signature.
Possible section tags are (and will be much more):
Code:
<name></name>
<class></class>
<levelland></levelland>
<levelsea></levelsea>
<server></server>
<guild></guild>
All sections need a tag which specified the coordinates where to print it on the signature - the <coords></coords> tag.
All tags have no additional attributes yet except <levelsea> and <levelland>
Both <levelsea> and <levelland> can be specified as following:
<levelsea class="symbol">
Then no text will displayed but land or sea symbols next to the numbers
<levelsea class="invisible">
Then no text nor symbols will displayed next to the numbers.
all other specifications will display the text "Land" or "Sea" next to your level.
Here is an example which will print the job of the character on your signature:
Code:
<class>
<coords>10,47</coords>
</class>
The <coords> tag is specified in x,y beginning with 0,0 in the left top corner of the picture.
Additional objects
You got several additional objects you could include in your signature.
You see them on the right side under the colorpicker on the create page.
Hover over the images to get more information how to implement them in your template.
Example
Now we have got all things we need to create a nice-looking signature

Here is an example of a signature which I explain step by step:
Creating: First step
Initialize your template
Creating: Second step
Create the global tag and specify all attributes which shall be different from the default values and be activ for the whole signature.
In this example I used
this color, a fontsize of 11px, the font named times and it will be aligned to the right.
Code:
<xml>
<global>
<font>
<color>24,53,72</color>
<align>right</align>
<size>11</size>
<file>times.ttf</file>
</font>
</global>
</xml>
Creating: Third step
Now we begin with our first slot and I would like to specify the name first:
For the name I would like to use a different fontsize so I should specify it in the section-tag also I used a different font.
Additionally I added a border around the signs which is 1px width and black.
The name has the coordinates x=95 and y=8. Because I specified that the font alignment shall be "right" in the <global> tag, the script will calculate
it from the right side. Thus the name will be printed at the top right corner.
Code:
<xml>
<global>
<font>
<bordercolor>24,53,72</bordercolor>
<align>right</align>
<size>11</size>
<file>times.ttf</file>
<color>255,255,255</color>
<bordersize>1</bordersize>
</font>
</global>
<char>
<name>
<coords>95,8</coords>
<font>
<color>24,53,72</color>
<bordercolor>255,255,255</bordercolor>
<size>37</size>
<file>Complete in Him.ttf</file>
</font>
</name>
</char>
</xml>
Creating: Final version
For all other sections it's simply the same: just add the section you want to print on the signature (you need'nt use all) and specify your attributes changing from the mother-tags.
Code:
<xml>
<global>
<font>
<bordercolor>24,53,72</bordercolor>
<align>right</align>
<size>11</size>
<file>times.ttf</file>
<color>255,255,255</color>
<bordersize>1</bordersize>
</font>
</global>
<char>
<name>
<coords>95,8</coords>
<font>
<color>24,53,72</color>
<bordercolor>255,255,255</bordercolor>
<size>37</size>
<file>Complete in Him.ttf</file>
</font>
</name>
<class>
<coords>95,47</coords>
</class>
<levelland>
<coords>95,60</coords>
</levelland>
<levelsea>
<coords>95,73</coords>
</levelsea>
<server>
<coords>80,73</coords>
<font>
<align>left</align>
</font>
</server>
<guild>
<coords>80,60</coords>
<font>
<align>left</align>
</font>
</guild>
</char>
</xml>
This template will look like this:
I can't explain sth. very well - especially in another language ;D
If you have questions please ask!
If you have any suggestions post them!
I hope to get some nice templates soon ;D
Here are some more examples of signatures:
Code:
<xml>
<global>
<font>
<color>255,255,255</color>
<align>right</align>
<size>11</size>
<file>times.ttf</file>
</font>
</global>
<char>
<name>
<coords>10,8</coords>
<font>
<size>28</size>
<bordercolor>255,255,255</bordercolor>
<bordersize>1</bordersize>
<color>120,0,0</color>
<file>Nightmare_Hero_Normal.ttf</file>
</font>
</name>
<class>
<coords>10,47</coords>
</class>
<levelland>
<coords>10,60</coords>
</levelland>
<levelsea>
<coords>10,73</coords>
</levelsea>
<server>
<coords>203,73</coords>
<font>
<align>left</align>
</font>
</server>
<guild>
<coords>203,60</coords>
<font>
<align>left</align>
</font>
</guild>
</char>
</xml>
Code:
<xml>
<global>
<font>
<bordercolor>24,53,72</bordercolor>
<size>11</size>
<file>times.ttf</file>
<color>255,255,255</color>
<bordersize>1</bordersize>
</font>
</global>
<char>
<name>
<coords>170,15</coords>
<font>
<color>24,53,72</color>
<bordercolor>255,255,255</bordercolor>
<size>25</size>
<file>MTCORSVA.TTF</file>
</font>
</name>
<levelland class="symbol">
<coords>135,15</coords>
</levelland>
<levelsea class="symbol">
<coords>135,30</coords>
</levelsea>
</char>
<char>
<name>
<coords>170,55</coords>
<font>
<color>24,53,72</color>
<bordercolor>255,255,255</bordercolor>
<size>25</size>
<file>MTCORSVA.TTF</file>
</font>
</name>
<levelland class="symbol">
<coords>135,55</coords>
</levelland>
<levelsea class="symbol">
<coords>135,70</coords>
</levelsea>
</char>
<char>
<font>
<align>right</align>
</font>
<name>
<coords>50,15</coords>
<font>
<color>24,53,72</color>
<bordercolor>255,255,255</bordercolor>
<size>25</size>
<file>MTCORSVA.TTF</file>
</font>
</name>
<levelland class="symbol">
<coords>15,15</coords>
</levelland>
<levelsea class="symbol">
<coords>15,30</coords>
</levelsea>
</char>
<char>
<font>
<align>right</align>
</font>
<name>
<coords>50,55</coords>
<font>
<color>24,53,72</color>
<bordercolor>255,255,255</bordercolor>
<size>25</size>
<file>MTCORSVA.TTF</file>
</font>
</name>
<levelland class="symbol">
<coords>15,55</coords>
</levelland>
<levelsea class="symbol">
<coords>15,70</coords>
</levelsea>
</char>
</xml>
Code:
<xml>
<global>
<font>
<bordercolor>24,53,72</bordercolor>
<align>right</align>
<size>11</size>
<file>times.ttf</file>
<color>255,255,255</color>
<bordersize>1</bordersize>
</font>
</global>
<char>
<name>
<coords>15,15</coords>
<font>
<color>24,53,72</color>
<bordercolor>255,255,255</bordercolor>
<size>37</size>
<file>Complete in Him.ttf</file>
</font>
</name>
<class>
<coords>15,50</coords>
</class>
<levelland>
<coords>15,63</coords>
</levelland>
<levelsea>
<coords>15,76</coords>
</levelsea>
<server>
<coords>133,76</coords>
<font>
<align>left</align>
</font>
</server>
<guild>
<coords>133,63</coords>
<font>
<align>left</align>
</font>
</guild>
</char>
</xml>
Code:
<xml>
<global>
<font>
<color>255,255,255</color>
<align>right</align>
<size>11</size>
<file>times.ttf</file>
</font>
</global>
<char>
<name>
<coords>10,8</coords>
<font>
<size>28</size>
<bordercolor>255,255,255</bordercolor>
<bordersize>1</bordersize>
<color>120,0,0</color>
<file>Nightmare_Hero_Normal.ttf</file>
</font>
</name>
<class>
<coords>10,47</coords>
</class>
<levelland>
<coords>10,60</coords>
</levelland>
<levelsea>
<coords>10,73</coords>
</levelsea>
<server>
<coords>203,73</coords>
<font>
<align>left</align>
</font>
</server>
<guild>
<coords>203,60</coords>
<font>
<align>left</align>
</font>
</guild>
</char>
</xml>
Code:
<xml>
<global>
<font>
<color>24,53,72</color>
<size>6</size>
<file>7x5.ttf</file>
</font>
</global>
<char>
<name>
<coords>5,5</coords>
</name>
<class>
<coords>5,16</coords>
</class>
<levelland>
<coords>5,24</coords>
</levelland>
<levelsea>
<coords>5,32</coords>
</levelsea>
<server>
<coords>5,24</coords>
<font>
<align>right</align>
</font>
</server>
<guild>
<coords>5,16</coords>
<font>
<align>right</align>
</font>
</guild>
</char>
</xml>