User:Troisnyxetienne/Talk Template Archive/Emotion Guide: Difference between revisions
m (Text replacement - "\[\[(:)?Image:" to "[[$1File:") |
|||
(13 intermediate revisions by 2 users not shown) | |||
Line 15: | Line 15: | ||
There will be two major sections in here : one for those using the common '''TalkTextTest2''' templates (like those on the Talk Template Archive), and one for those starting from scratch. | There will be two major sections in here : one for those using the common '''TalkTextTest2''' templates (like those on the Talk Template Archive), and one for those starting from scratch. | ||
==Code for TalkTextTest2== | ==Code for TalkTextTest2 (the basic talk bubble)== | ||
[[Template:TalkTextTest2|TalkTextTest2]] is the basic talkbox that most of us use - and probably the most flexible, in that the colours, time and sig can be changed rather flexibly at will, and the coding is rather short. Before I even begin explaining how one emotion can be joined with another, let's revise the '''basic code for TalkTextTest2''' : | {{TNE|text= Okay, I'm actually '''''compelled''''' to do this, or else people will see this guide with nothing but black and white text, and they'll probably get fed up of me... | ||
[[Template:TalkTextTest2|TalkTextTest2]] is the basic talkbox that most of us use - and probably the most flexible, in that the colours, time and sig can be changed rather flexibly at will, and the coding is rather short. Before I even begin explaining how one emotion can be joined with another, let's revise the '''basic code for TalkTextTest2''' :}} | |||
<pre> | <pre> | ||
Line 35: | Line 37: | ||
</pre> | </pre> | ||
and you enter in the talk code with | {{TNE|blahtext=and you enter in the talk code with}} | ||
<pre> | <pre> | ||
Line 45: | Line 47: | ||
</pre> | </pre> | ||
Now, with this basic code, if you have talk bubbles of two different emotions, you might be doing the same thing as I once did - storing them under two separate templates. | {{TNE|text=Now, with this basic code, if you have talk bubbles of two different emotions, you might be doing the same thing as I once did - storing them under two separate templates. | ||
Okay, now suppose you want to fuse two emotions together, and you want your '''normal input''' to be "text=" and your, say, '''happy input''' to be "happy=". This is how it's done : | Okay, now suppose you want to fuse two emotions together, and you want your '''normal input''' to be "text=" and your, say, '''happy input''' to be "happy=". This is how it's done :}} | ||
<pre> | <pre> | ||
Line 74: | Line 76: | ||
|time={{{time}}} | |time={{{time}}} | ||
|text={{{happy}}} | |text={{{happy}}} | ||
}} | }} }}}} | ||
</pre> | </pre> | ||
Each template has a different set of colour slots, as well as a different entry for images, allowing you to put different images for different feelings. The whole key lies with these characters : '''<nowiki>|{{#if:{{{<INSERT TEXT HERE>|}}}|</nowiki>''' | {{TNE|text=Each template has a different set of colour slots, as well as a different entry for images, allowing you to put different images for different feelings. The whole key lies with these characters : '''<nowiki>|{{#if:{{{<INSERT TEXT HERE>|}}}|</nowiki>''' | ||
So if you want to add another emotion, say, '''sadness''' and you want your input to start with "sad=", then simply continue from where we left off at "happy=" : | So if you want to add another emotion, say, '''sadness''' and you want your input to start with "sad=", then simply continue from where we left off at "happy=" :}} | ||
<pre> | <pre> | ||
{{#if:{{{text|}}}|{{TalkTextTest2 | |||
|image= | |||
|color= | |||
|color2= | |||
|textcolor= | |||
|textcolor2= | |||
|line= | |||
|fonttype= | |||
|name= | |||
|sig= | |||
|time={{{time}}} | |||
|text={{{text}}} | |||
}}|{{#if:{{{happy|}}}|{{TalkTextTest2 | |||
|image= | |||
|color= | |||
|color2= | |||
|textcolor= | |||
|textcolor2= | |||
|line= | |||
|fonttype= | |||
|name= | |||
|sig= | |||
|time={{{time}}} | |||
|text={{{happy}}} | |||
}} }} | |||
|{{#if:{{{sad|}}}|{{TalkTextTest2 | |{{#if:{{{sad|}}}|{{TalkTextTest2 | ||
|image= | |image= | ||
Line 94: | Line 121: | ||
|time={{{time}}} | |time={{{time}}} | ||
|text={{{sad}}} | |text={{{sad}}} | ||
}} | }} }}}}}} | ||
</pre> | </pre> | ||
So now you've got three emotions : normal, happy and sad. Based on the coding above, here's how to input these texts : | {{TNE|happytext=Take a good look at the two codes above (Normal/Happy and Sad). Take note of the ending. Where a usual talk template would end with two brackets like this <nowiki>}}</nowiki> , emotion templates end with more. The first template ended with '''four brackets <nowiki>}}}}</nowiki>''' , as there were '''two''' cases of <nowiki>{{#if:{{{insert text here|}}}</nowiki>. | ||
In the second template, there were '''three''' cases of <nowiki>{{#if:{{{insert text here|}}}</nowiki>. So '''six brackets <nowiki>}}}}}}</nowiki>''' have to be placed at the ending of the template. | |||
In short, the more if's you have, the more double brackets you have to place at the end of the template. | |||
So now you've got three emotions : normal, happy and sad. Based on the coding above, here's how to input these texts :}} | |||
<pre> | <pre> | ||
Line 122: | Line 155: | ||
</pre> | </pre> | ||
There you go ! And once you've managed to gather all images for your emotions, repeat the same process. Note that the '''Time''' part of the template is optional, and most people just choose to have one "time" per emotion, instead of having to change all the time. | {{TNE|text=There you go ! And once you've managed to gather all images for your emotions, repeat the same process. Note that the '''Time''' part of the template is optional, and most people just choose to have one "time" per emotion, instead of having to change all the time.}} | ||
==Code for those starting from scratch ! (Advanced wikimarkup)== | ==Code for those starting from scratch ! (Advanced wikimarkup)== | ||
===I want you... to spot the difference=== | ===I want you... to spot the difference=== | ||
As I mentioned to a few users over here, the code for starting from scratch is rather long. [[User:ILHI|ILHI]] managed to help me with this. It's rather different from '''TalkTextTest2'''. | {{TNE|text=As I mentioned to a few users over here, the code for starting from scratch is rather long. [[User:ILHI|ILHI]] managed to help me with this. It's rather different from '''TalkTextTest2'''. | ||
Now, I'm going to put examples of two templates : [[Template:Troisnyxetienne]] and [[Template:TNE]], and if you're patient enough in reading this... I'd like you to spot the difference. And I'm truly sorry because there are just too many scrollbars in this section... | Now, I'm going to put examples of two templates : [[Template:Troisnyxetienne]] and [[Template:TNE]], and if you're patient enough in reading this... I'd like you to spot the difference. And I'm truly sorry because there are just too many scrollbars in this section...}} | ||
<pre> | <pre> | ||
Line 134: | Line 167: | ||
{| style="background:transparent" | {| style="background:transparent" | ||
|valign=top|[[ | |valign=top|[[File:Yuffie_Chain.png|50px]] | ||
|<table width=100% border="0" cellpadding="0" cellspacing="0" style="background:transparent"> | |<table width=100% border="0" cellpadding="0" cellspacing="0" style="background:transparent"> | ||
|- | |- | ||
Line 276: | Line 309: | ||
</pre> | </pre> | ||
Phew, that must've been an exhausting read, ya ? Wait : we've still got one more template to go ! | {{TNE|happytext=Phew, that must've been an exhausting read, ya ? Wait : we've still got one more template to go !}} | ||
<pre> | <pre> | ||
Line 282: | Line 315: | ||
<includeonly>{| style="background:transparent" | <includeonly>{| style="background:transparent" | ||
|valign=top|{{#if:{{{text|}}}|[[ | |valign=top|{{#if:{{{text|}}}|[[File:Yuffie Chain.png|50px]]|}}{{#if:{{{shocktext|}}}|[[File:Yuffie Surprise.png|50px]]|}}{{#if:{{{attntext|}}}|[[File:Yuffie Credo.png|50px]]|}}{{#if:{{{angrytext|}}}|[[File:Yuffie Enragee.png|50px]]|}}{{#if:{{{happytext|}}}|[[File:Yuffie Rejouie.png|50px]]|}}{{#if:{{{blahtext|}}}|[[File:Yuffie Correctionneuse.png|50px]]|}}{{#if:{{{remerciement|}}}|[[File:Yuffie Assurance.png|50px]]|}} | ||
|<table width=100% border="0" cellpadding="0" cellspacing="0" style="background:transparent"> | |<table width=100% border="0" cellpadding="0" cellspacing="0" style="background:transparent"> | ||
|- | |- | ||
Line 425: | Line 458: | ||
===Okay, we're too exhausted to even spot the difference !=== | ===Okay, we're too exhausted to even spot the difference !=== | ||
{{TNE|text=The difference lies between the images :}} | |||
;First template | ;First template | ||
<nowiki>|valign=top|[[ | <nowiki>|valign=top|[[File:Yuffie_Chain.png|50px]]</nowiki> | ||
;Second template | ;Second template | ||
<nowiki>|valign=top|{{#if:{{{text|}}}|[[ | <nowiki>|valign=top|{{#if:{{{text|}}}|[[File:Yuffie Chain.png|50px]]|}}{{#if:{{{shocktext|}}}|[[File:Yuffie Surprise.png|50px]]|}}{{#if:{{{attntext|}}}|[[File:Yuffie Credo.png|50px]]|}}{{#if:{{{angrytext|}}}|[[File:Yuffie Enragee.png|50px]]|}}{{#if:{{{happytext|}}}|[[File:Yuffie Rejouie.png|50px]]|}}{{#if:{{{blahtext|}}}|[[File:Yuffie Correctionneuse.png|50px]]|}}{{#if:{{{remerciement|}}}|[[File:Yuffie Assurance.png|50px]]|}}</nowiki> | ||
{{TNE|text=In the signature and time inputs :}} | |||
;First template | ;First template | ||
Line 441: | Line 474: | ||
<nowiki>|BGCOLOR=lime| [[User:Troisnyxetienne|<font color="black" face="Freestyle Script" size="5">TroisNyxÉtienne]] <sup>[[User talk:Troisnyxetienne|<font color="black">Appellez-moi !</font>]]</sup></font><font color="black" face="Freestyle Script" size="5"> — Les fragments d’un rêve qui ressemblent à un souvenir lointain.</font><p><font color="black" face="Trebuchet MS"><sub>{{#if:{{{text|}}}|''Is it me you're looking for ?''|}}{{#if:{{{shocktext|}}}|''No. Wait. SAY THAT AGAIN.''|}}{{#if:{{{attntext|}}}|Annonçant ici quelque chose d’'''important''', alors faites attention !|}}{{#if:{{{angrytext|}}}|Tu t’es déjà attiré(e) mes foudres, et tu le regretteras '''amèrement''' !|}}{{#if:{{{happytext|}}}|''It's real... ! Here's recompense for healing my heart.''|}}{{#if:{{{blahtext|}}}|''Er, helly doo sad wee to you too.''|}}{{#if:{{{remerciement|}}}|''I owe you one, now and always.''|}}</sub></font></p></nowiki> | <nowiki>|BGCOLOR=lime| [[User:Troisnyxetienne|<font color="black" face="Freestyle Script" size="5">TroisNyxÉtienne]] <sup>[[User talk:Troisnyxetienne|<font color="black">Appellez-moi !</font>]]</sup></font><font color="black" face="Freestyle Script" size="5"> — Les fragments d’un rêve qui ressemblent à un souvenir lointain.</font><p><font color="black" face="Trebuchet MS"><sub>{{#if:{{{text|}}}|''Is it me you're looking for ?''|}}{{#if:{{{shocktext|}}}|''No. Wait. SAY THAT AGAIN.''|}}{{#if:{{{attntext|}}}|Annonçant ici quelque chose d’'''important''', alors faites attention !|}}{{#if:{{{angrytext|}}}|Tu t’es déjà attiré(e) mes foudres, et tu le regretteras '''amèrement''' !|}}{{#if:{{{happytext|}}}|''It's real... ! Here's recompense for healing my heart.''|}}{{#if:{{{blahtext|}}}|''Er, helly doo sad wee to you too.''|}}{{#if:{{{remerciement|}}}|''I owe you one, now and always.''|}}</sub></font></p></nowiki> | ||
{{TNE|text=And in the text :}} | |||
;First template | ;First template | ||
Line 449: | Line 482: | ||
<nowiki>|BGCOLOR=yellow height=1|<font color=black face="Trebuchet MS">{{#if:{{{text|}}}|{{{text}}}|}}{{#if:{{{shocktext|}}}|{{{shocktext}}}|}}{{#if:{{{attntext|}}}|{{{attntext}}}|}}{{#if:{{{angrytext|}}}|{{{angrytext}}}|}}{{#if:{{{happytext|}}}|{{{happytext}}}|}}{{#if:{{{blahtext|}}}|{{{blahtext}}}|}}{{#if:{{{remerciement|}}}|{{{remerciement}}}|}}</font></nowiki> | <nowiki>|BGCOLOR=yellow height=1|<font color=black face="Trebuchet MS">{{#if:{{{text|}}}|{{{text}}}|}}{{#if:{{{shocktext|}}}|{{{shocktext}}}|}}{{#if:{{{attntext|}}}|{{{attntext}}}|}}{{#if:{{{angrytext|}}}|{{{angrytext}}}|}}{{#if:{{{happytext|}}}|{{{happytext}}}|}}{{#if:{{{blahtext|}}}|{{{blahtext}}}|}}{{#if:{{{remerciement|}}}|{{{remerciement}}}|}}</font></nowiki> | ||
{{TNE|attntext=The whole idea is that different emotions can already be added into their respective sections : images, signature/time, and text. Unlike TalkTextTest2, you don't need to add in the coding for the talk bubble over and over again, because you're starting from scratch. However, as in the first set of codes, the key to adding emotions lies in '''this''' set of text :}} | |||
<nowiki>{{#if:{{{Insert text here|}}}</nowiki> | |||
'''(To be updated. In the meantime, can any advanced user over here help me to make this section more... intelligible ? Please and thank you !)''' | |||
{{TNE-Subpages}} |
Latest revision as of 15:41, 10 February 2021
Salut ! Remember what I said at the User:Troisnyxetienne/Talk Template Archive about one textbox having so many emotions ? Here's a preview of mine :
|
|
|
|
|
|
|
If you look at Edit Page, you'll notice that the "text=" part of my talk bubble is replaceable : text, shocktext, attntext, happytext, angrytext, blahtext, and remerciement for seven different emotions. However, the template name is still the same - TNE.
Ever since this was made possible more and more people are approaching me for a full set of emotions on their talk bubbles. Okay, as promised, here's the Emotion Guide !
There will be two major sections in here : one for those using the common TalkTextTest2 templates (like those on the Talk Template Archive), and one for those starting from scratch.
Code for TalkTextTest2 (the basic talk bubble)
|
{{TalkTextTest2 |image= |color= |color2= |textcolor= |textcolor2= |line= |fonttype= |name= |sig= |time={{{time}}} |text={{{text}}} }}
|
{{your username |sig= |time={{{time}}} (optional) |text={{{text}}} }}
|
{{#if:{{{text|}}}|{{TalkTextTest2 |image= |color= |color2= |textcolor= |textcolor2= |line= |fonttype= |name= |sig= |time={{{time}}} |text={{{text}}} }}|{{#if:{{{happy|}}}|{{TalkTextTest2 |image= |color= |color2= |textcolor= |textcolor2= |line= |fonttype= |name= |sig= |time={{{time}}} |text={{{happy}}} }} }}}}
|
{{#if:{{{text|}}}|{{TalkTextTest2 |image= |color= |color2= |textcolor= |textcolor2= |line= |fonttype= |name= |sig= |time={{{time}}} |text={{{text}}} }}|{{#if:{{{happy|}}}|{{TalkTextTest2 |image= |color= |color2= |textcolor= |textcolor2= |line= |fonttype= |name= |sig= |time={{{time}}} |text={{{happy}}} }} }} |{{#if:{{{sad|}}}|{{TalkTextTest2 |image= |color= |color2= |textcolor= |textcolor2= |line= |fonttype= |name= |sig= |time={{{time}}} |text={{{sad}}} }} }}}}}}
|
NORMAL {{your username time= text= }} HAPPY {{your username time= happy= }} SAD {{your username time= sad= }}
|
Code for those starting from scratch ! (Advanced wikimarkup)
I want you... to spot the difference
|
Template:Troisnyxetienne starts here -- {| style="background:transparent" |valign=top|[[File:Yuffie_Chain.png|50px]] |<table width=100% border="0" cellpadding="0" cellspacing="0" style="background:transparent"> |- |COLSPAN=9 width=9 height=1| |bgcolor=limegreen height=1 width=1| |height=1 bgcolor=limegreen| |width=1 height=1 bgcolor=limegreen| |COLSPAN=4 width=4 height=1| |- |COLSPAN=8 width=8 height=1| |bgcolor=limegreen width=1 height=1| |BGCOLOR=lime width=1 height=1| |BGCOLOR=lime height=1| |BGCOLOR=lime width=1 height=1| |bgcolor=limegreen width=1 height=1| |COLSPAN=3 width=3 height=1| |- |COLSPAN=7 width=7 height=1| |width=1 height=1 BGCOLOR=limegreen | |BGCOLOR=lime COLSPAN=2 width=2 height=1| |BGCOLOR=lime height=1| |BGCOLOR=lime COLSPAN=2 width=2 height=1| |width=1 height=1 BGCOLOR=limegreen| |COLSPAN=2 width=2 height=1| |- |COLSPAN=6 width=6 height=1| |width=1 height=1 BGCOLOR=limegreen| |BGCOLOR=lime COLSPAN=3 width="3" height=1| |BGCOLOR=lime height=1| |BGCOLOR=lime COLSPAN=3 width=3 height=1| |width=1 height=1 BGCOLOR=limegreen| |width=1 height=1| |- |COLSPAN=5 width=5| |width=1 BGCOLOR=limegreen| |BGCOLOR=lime COLSPAN=4 width=4| |BGCOLOR=lime| [[User:Troisnyxetienne|<font color="black" face="Freestyle Script" size="5">TroisNyxÉtienne]] <sup>[[User talk:Troisnyxetienne|<font color="black">Appellez-moi !</font>]]</sup></font><font color="black" face="Freestyle Script" size="5"> — Les fragments d’un rêve qui ressemblent à un souvenir lointain.</font><p><font color="black" face="Trebuchet MS"><sub>''Is it me you're looking for ?''</sub></font></p> |BGCOLOR=lime COLSPAN=4 width=4| |width=1 BGCOLOR=limegreen| |- |COLSPAN=4 width=4| |width=1 height=1 BGCOLOR=limegreen| |BGCOLOR=lime COLSPAN=5 width=5| |BGCOLOR=lime height=1| |BGCOLOR=lime COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=limegreen| |- |COLSPAN=3 width=3 height=1| |width=1 height=1 BGCOLOR=limegreen| |BGCOLOR=lime COLSPAN=6 width=6 height=1| |BGCOLOR=lime height=1| |BGCOLOR=lime COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=limegreen| |- |COLSPAN=2 width=2 height=1| |width=1 height=1 BGCOLOR=limegreen| |BGCOLOR=lime COLSPAN=7 width=7 height=1| |BGCOLOR=lime height=1| |BGCOLOR=lime COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=limegreen| |- |width=1 height=1| |width=1 height=1 BGCOLOR=limegreen| |BGCOLOR=lime COLSPAN=8 width=8 height=1| |BGCOLOR=lime height=1| |BGCOLOR=lime COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=limegreen| |- |width=1 height=1 BGCOLOR=limegreen| |BGCOLOR=yellow COLSPAN=9 width=9 height=1| |BGCOLOR=yellow height="1" BGCOLOR=#greenyellow| |BGCOLOR=yellow COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=limegreen| |- |width=1 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |BGCOLOR=yellow COLSPAN=8 width=8 height=1| |BGCOLOR=yellow height=1| |BGCOLOR=yellow COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |- |COLSPAN=2 width=2 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |BGCOLOR=yellow COLSPAN=7 width=7 height=1| |BGCOLOR=yellow height=1| |BGCOLOR=yellow COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |- |COLSPAN=3 width=3 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |BGCOLOR=yellow COLSPAN=6 width=6 height=1| |BGCOLOR=yellow height=1| |BGCOLOR=yellow COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |- |COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |BGCOLOR=yellow COLSPAN=5 width=5| |BGCOLOR=yellow height=1| |BGCOLOR=yellow COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |- |COLSPAN=5 width=5| |width=1 BGCOLOR=#greenyellow| |BGCOLOR=yellow COLSPAN=4 width=4 height=1| |BGCOLOR=yellow height=1|<font color=black face="Trebuchet MS"> {{{text}}}</font> |BGCOLOR=yellow COLSPAN=4 width=4 height=1| |width="1" BGCOLOR=#greenyellow| |- |COLSPAN=6 width=6 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |BGCOLOR=gold COLSPAN=3 width=3 height=1| |BGCOLOR=gold height=1| |BGCOLOR=gold COLSPAN=3 width=3 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |width=1 height=1| |- |COLSPAN=7 width=7 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |BGCOLOR=gold COLSPAN=2 width=2 height=1| |BGCOLOR=gold height=1| |BGCOLOR=gold COLSPAN=2 width=2 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |COLSPAN=2 width=2 height=1| |- |COLSPAN=8 width=8 height=1| |bgcolor=#greenyellow width=1 height=1| |BGCOLOR=gold width=1 height=1| |BGCOLOR=gold height=1| |BGCOLOR=gold width=1 height=1| |bgcolor=#greenyellow width=1 height=1| |COLSPAN=3 width=3 height=1| |- |COLSPAN=9 width=9 height=1| |BGCOLOR=gold bgcolor=#greenyellow height=1 width=1| |BGCOLOR=gold height=1 bgcolor=#greenyellow | |BGCOLOR=gold width=1 height=1 bgcolor=#greenyellow | |COLSPAN=4 width=4 height=1| </table> |}
|
Template:TNE starts here - <includeonly>{| style="background:transparent" |valign=top|{{#if:{{{text|}}}|[[File:Yuffie Chain.png|50px]]|}}{{#if:{{{shocktext|}}}|[[File:Yuffie Surprise.png|50px]]|}}{{#if:{{{attntext|}}}|[[File:Yuffie Credo.png|50px]]|}}{{#if:{{{angrytext|}}}|[[File:Yuffie Enragee.png|50px]]|}}{{#if:{{{happytext|}}}|[[File:Yuffie Rejouie.png|50px]]|}}{{#if:{{{blahtext|}}}|[[File:Yuffie Correctionneuse.png|50px]]|}}{{#if:{{{remerciement|}}}|[[File:Yuffie Assurance.png|50px]]|}} |<table width=100% border="0" cellpadding="0" cellspacing="0" style="background:transparent"> |- |COLSPAN=9 width=9 height=1| |bgcolor=limegreen height=1 width=1| |height=1 bgcolor=limegreen| |width=1 height=1 bgcolor=limegreen| |COLSPAN=4 width=4 height=1| |- |COLSPAN=8 width=8 height=1| |bgcolor=limegreen width=1 height=1| |BGCOLOR=lime width=1 height=1| |BGCOLOR=lime height=1| |BGCOLOR=lime width=1 height=1| |bgcolor=limegreen width=1 height=1| |COLSPAN=3 width=3 height=1| |- |COLSPAN=7 width=7 height=1| |width=1 height=1 BGCOLOR=limegreen | |BGCOLOR=lime COLSPAN=2 width=2 height=1| |BGCOLOR=lime height=1| |BGCOLOR=lime COLSPAN=2 width=2 height=1| |width=1 height=1 BGCOLOR=limegreen| |COLSPAN=2 width=2 height=1| |- |COLSPAN=6 width=6 height=1| |width=1 height=1 BGCOLOR=limegreen| |BGCOLOR=lime COLSPAN=3 width="3" height=1| |BGCOLOR=lime height=1| |BGCOLOR=lime COLSPAN=3 width=3 height=1| |width=1 height=1 BGCOLOR=limegreen| |width=1 height=1| |- |COLSPAN=5 width=5| |width=1 BGCOLOR=limegreen| |BGCOLOR=lime COLSPAN=4 width=4| |BGCOLOR=lime| [[User:Troisnyxetienne|<font color="black" face="Freestyle Script" size="5">TroisNyxÉtienne]] <sup>[[User talk:Troisnyxetienne|<font color="black">Appellez-moi !</font>]]</sup></font><font color="black" face="Freestyle Script" size="5"> — Les fragments d’un rêve qui ressemblent à un souvenir lointain.</font><p><font color="black" face="Trebuchet MS"><sub>{{#if:{{{text|}}}|''Is it me you're looking for ?''|}}{{#if:{{{shocktext|}}}|''No. Wait. SAY THAT AGAIN.''|}}{{#if:{{{attntext|}}}|Annonçant ici quelque chose d’'''important''', alors faites attention !|}}{{#if:{{{angrytext|}}}|Tu t’es déjà attiré(e) mes foudres, et tu le regretteras '''amèrement''' !|}}{{#if:{{{happytext|}}}|''It's real... ! Here's recompense for healing my heart.''|}}{{#if:{{{blahtext|}}}|''Er, helly doo sad wee to you too.''|}}{{#if:{{{remerciement|}}}|''I owe you one, now and always.''|}}</sub></font></p> |BGCOLOR=lime COLSPAN=4 width=4| |width=1 BGCOLOR=limegreen| |- |COLSPAN=4 width=4| |width=1 height=1 BGCOLOR=limegreen| |BGCOLOR=lime COLSPAN=5 width=5| |BGCOLOR=lime height=1| |BGCOLOR=lime COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=limegreen| |- |COLSPAN=3 width=3 height=1| |width=1 height=1 BGCOLOR=limegreen| |BGCOLOR=lime COLSPAN=6 width=6 height=1| |BGCOLOR=lime height=1| |BGCOLOR=lime COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=limegreen| |- |COLSPAN=2 width=2 height=1| |width=1 height=1 BGCOLOR=limegreen| |BGCOLOR=lime COLSPAN=7 width=7 height=1| |BGCOLOR=lime height=1| |BGCOLOR=lime COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=limegreen| |- |width=1 height=1| |width=1 height=1 BGCOLOR=limegreen| |BGCOLOR=lime COLSPAN=8 width=8 height=1| |BGCOLOR=lime height=1| |BGCOLOR=lime COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=limegreen| |- |width=1 height=1 BGCOLOR=limegreen| |BGCOLOR=yellow COLSPAN=9 width=9 height=1| |BGCOLOR=yellow height="1" BGCOLOR=#greenyellow| |BGCOLOR=yellow COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=limegreen| |- |width=1 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |BGCOLOR=yellow COLSPAN=8 width=8 height=1| |BGCOLOR=yellow height=1| |BGCOLOR=yellow COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |- |COLSPAN=2 width=2 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |BGCOLOR=yellow COLSPAN=7 width=7 height=1| |BGCOLOR=yellow height=1| |BGCOLOR=yellow COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |- |COLSPAN=3 width=3 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |BGCOLOR=yellow COLSPAN=6 width=6 height=1| |BGCOLOR=yellow height=1| |BGCOLOR=yellow COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |- |COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |BGCOLOR=yellow COLSPAN=5 width=5| |BGCOLOR=yellow height=1| |BGCOLOR=yellow COLSPAN=4 width=4 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |- |COLSPAN=5 width=5| |width=1 BGCOLOR=#greenyellow| |BGCOLOR=yellow COLSPAN=4 width=4 height=1| |BGCOLOR=yellow height=1|<font color=black face="Trebuchet MS">{{#if:{{{text|}}}|{{{text}}}|}}{{#if:{{{shocktext|}}}|{{{shocktext}}}|}}{{#if:{{{attntext|}}}|{{{attntext}}}|}}{{#if:{{{angrytext|}}}|{{{angrytext}}}|}}{{#if:{{{happytext|}}}|{{{happytext}}}|}}{{#if:{{{blahtext|}}}|{{{blahtext}}}|}}{{#if:{{{remerciement|}}}|{{{remerciement}}}|}}</font> |BGCOLOR=yellow COLSPAN=4 width=4 height=1| |width="1" BGCOLOR=#greenyellow| |- |COLSPAN=6 width=6 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |BGCOLOR=gold COLSPAN=3 width=3 height=1| |BGCOLOR=gold height=1| |BGCOLOR=gold COLSPAN=3 width=3 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |width=1 height=1| |- |COLSPAN=7 width=7 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |BGCOLOR=gold COLSPAN=2 width=2 height=1| |BGCOLOR=gold height=1| |BGCOLOR=gold COLSPAN=2 width=2 height=1| |width=1 height=1 BGCOLOR=#greenyellow| |COLSPAN=2 width=2 height=1| |- |COLSPAN=8 width=8 height=1| |bgcolor=#greenyellow width=1 height=1| |BGCOLOR=gold width=1 height=1| |BGCOLOR=gold height=1| |BGCOLOR=gold width=1 height=1| |bgcolor=#greenyellow width=1 height=1| |COLSPAN=3 width=3 height=1| |- |COLSPAN=9 width=9 height=1| |BGCOLOR=gold bgcolor=#greenyellow height=1 width=1| |BGCOLOR=gold height=1 bgcolor=#greenyellow | |BGCOLOR=gold width=1 height=1 bgcolor=#greenyellow | |COLSPAN=4 width=4 height=1| </table> |}</includeonly>
Okay, we're too exhausted to even spot the difference !
|
- First template
|valign=top|[[File:Yuffie_Chain.png|50px]]
- Second template
|valign=top|{{#if:{{{text|}}}|[[File:Yuffie Chain.png|50px]]|}}{{#if:{{{shocktext|}}}|[[File:Yuffie Surprise.png|50px]]|}}{{#if:{{{attntext|}}}|[[File:Yuffie Credo.png|50px]]|}}{{#if:{{{angrytext|}}}|[[File:Yuffie Enragee.png|50px]]|}}{{#if:{{{happytext|}}}|[[File:Yuffie Rejouie.png|50px]]|}}{{#if:{{{blahtext|}}}|[[File:Yuffie Correctionneuse.png|50px]]|}}{{#if:{{{remerciement|}}}|[[File:Yuffie Assurance.png|50px]]|}}
|
- First template
|BGCOLOR=lime| [[User:Troisnyxetienne|<font color="black" face="Freestyle Script" size="5">TroisNyxÉtienne]] <sup>[[User talk:Troisnyxetienne|<font color="black">Appellez-moi !</font>]]</sup></font><font color="black" face="Freestyle Script" size="5"> — Les fragments d’un rêve qui ressemblent à un souvenir lointain.</font><p><font color="black" face="Trebuchet MS"><sub>''Is it me you're looking for ?''</sub></font></p>
- Second template
|BGCOLOR=lime| [[User:Troisnyxetienne|<font color="black" face="Freestyle Script" size="5">TroisNyxÉtienne]] <sup>[[User talk:Troisnyxetienne|<font color="black">Appellez-moi !</font>]]</sup></font><font color="black" face="Freestyle Script" size="5"> — Les fragments d’un rêve qui ressemblent à un souvenir lointain.</font><p><font color="black" face="Trebuchet MS"><sub>{{#if:{{{text|}}}|''Is it me you're looking for ?''|}}{{#if:{{{shocktext|}}}|''No. Wait. SAY THAT AGAIN.''|}}{{#if:{{{attntext|}}}|Annonçant ici quelque chose d’'''important''', alors faites attention !|}}{{#if:{{{angrytext|}}}|Tu t’es déjà attiré(e) mes foudres, et tu le regretteras '''amèrement''' !|}}{{#if:{{{happytext|}}}|''It's real... ! Here's recompense for healing my heart.''|}}{{#if:{{{blahtext|}}}|''Er, helly doo sad wee to you too.''|}}{{#if:{{{remerciement|}}}|''I owe you one, now and always.''|}}</sub></font></p>
|
- First template
|BGCOLOR=yellow height=1|<font color=black face="Trebuchet MS"> {{{text}}}</font>
- Second template
|BGCOLOR=yellow height=1|<font color=black face="Trebuchet MS">{{#if:{{{text|}}}|{{{text}}}|}}{{#if:{{{shocktext|}}}|{{{shocktext}}}|}}{{#if:{{{attntext|}}}|{{{attntext}}}|}}{{#if:{{{angrytext|}}}|{{{angrytext}}}|}}{{#if:{{{happytext|}}}|{{{happytext}}}|}}{{#if:{{{blahtext|}}}|{{{blahtext}}}|}}{{#if:{{{remerciement|}}}|{{{remerciement}}}|}}</font>
|
{{#if:{{{Insert text here|}}}
(To be updated. In the meantime, can any advanced user over here help me to make this section more... intelligible ? Please and thank you !)
Navigation |
---|
Userspace |
Mensa - Re:Chain Walkthrough |
Userpage tweaks |
Talk Template Archive - Avatars - The Emotion Guide - Archive Images |
Other wikis |
Kingdom Hearts - Kingdom Hearts (FR) - Final Fantasy - The Sims - Kingdom Hearts Fanon - Evergrace - Suikoden - Jak & Daxter - fr.Wikia |
Elsewhere |
Newgrounds - @Twitter - DeviantArt - YouTube - Facebook (Troisnyx) |