<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
	<title><![CDATA[The Gamer's Collective Network - Tutorials: The GCN]]></title>
	<link>http://www.the-gcn.com/tutorials/category/1-the-gcn/</link>
	<pubDate>Sun, 20 May 2012 09:41:57 +0000</pubDate>
	<ttl>1800</ttl>
	<description>All tutorials, with exemption of game codes.</description>
	<item>
		<title>Importing Custom DLists (A Sword)</title>
		<link>http://www.the-gcn.com/tutorials/article/3-importing-custom-dlists-a-sword/</link>
		<description><![CDATA[This is my tutorial on how I import a DList.<br />
<br />
First using Model_Convert.py, second using wotf.py<br />
<br />
Importing a DList using Model_Convert.py<br />
-------------------------------------------------------------<br />
Go ahead and open the model template I will provide [ <a href='http://www.mediafire...ha6bfdaakcz28dz' class='bbc_url' title='External link' rel='nofollow external'>http://www.mediafire...ha6bfdaakcz28dz</a> ]<br />
in any 3D modeling software.<br />
<br />
Export it as an OBJ or if you have your own models, just size it correctly in comparison to the model I have provided.<br />
<br />
(TIP! If your model is not symmetrical make sure you want the side that you want facing down, is pointed up. Much like it is displayed in UoT.)<br />
<br />
Now that you have your OBJ, (Assuming you've made the textures 32 x 32 24-bit BMPs.) Take the textures in the Materials' Folder and put them in the SAME DIRECTORY as the OBJ and MTL.<br />
<br />
Open you .MTL in Notepad/WordPad and edit each occurrence of Map_Kd to MapKd<br />
You should also see where it states the Directory of the texture. Erase the Directory part just leaving the texture name. Your MTL is formatted <img src='http://www.the-gcn.com/public/style_emoticons/default/smile.png' class='bbc_emoticon' alt=':)' /><br />
<br />
Now this is the most annoying part. To assure your DList will convert correctly, Open Each Texture in MS Paint! Strictly, MS Paint<br />
<br />
All you do is Re-Save the textures with the Save As feature.<br />
<br />
Now, everything is in order. Double Click on Model_Convert.py.<br />
<br />
Of course, the variables.<br />
Choice: 2<br />
Type the complete Directory of you object file, or just Drag and Drop and delete the quotes around it <img src='http://www.the-gcn.com/public/style_emoticons/default/smile.png' class='bbc_emoticon' alt=':)' /><br />
Scale: 45 (Yeah, that's sounds amazingly huge, but don't worry, it's necessary.)<br />
Bank: 06<br />
Offset: 37800 (assuming your putting the model in Adult Link's file.)<br />
"Convert collision?(y/n)." Look at the text above it, next to "DList offset."You can type Y or N and it won't matter now, by the way. Press any key. Just be sure to write down what was next to "DList offset." - (from Flotonic's Google site)<br />
<br />
Now you see that it generated a ~obj a ~Mtl and a .bin right?<br />
You can delete the other two, we just need the BIN.<br />
<br />
Open a Clean Object_Link_Boy into HxD (Assuming that's what you're using) and open that .BIN as well.<br />
Now, In the Bin, you'll see a buttload of 00s, just simply go to Edit&gt;Select Block and type in for length 37800.<br />
When Selected just hit backspace.<br />
<br />
Hit hit Ctrl + A or go to select all. Copy that, now go to the VERY END of Link's file and Paste write it.<br />
<br />
Now, remember that DList Offset?<br />
<br />
In Note/Word Pad Type<br />
DE 00 00 00 06 [Your Offset]<br />
DE 00 00 00 06 02 1C E8 -Adult Link's Hand Model<br />
DF 00 00 00 00 00 00 00<br />
<br />
Back in HxD in Object_Link_Boy, got to Seacrh&gt;GoTo and for that offset type 21F78. Hit OK.<br />
Now Copy And Paste Write<br />
DE 00 00 00 06 [Your Offset]<br />
DE 00 00 00 06 02 1C E8<br />
DF 00 00 00 00 00 00 00<br />
<br />
Right in that spot.<br />
<br />
Go back to GoTo and this time put 27078<br />
<br />
And Paste Write the same thing.<br />
<br />
Save.<br />
<br />
INJECTING INTO THE ROM<br />
-------------------------------------------<br />
Open a CLEAN DEBUG ROM in HxD.<br />
Go To Search&gt;GoTo 035D0000<br />
<br />
You'll see a buttload of FFs.<br />
Copy Link's ENTIRE EDITED FILE and paste write it right there.<br />
Document the offset in the lower left hand corner and add a 0 in front of it.<br />
Your Notes should be 035D0000[Your Offset with a Zero in front of it]<br />
<br />
Now (assuming you have it set to show 16 bytes at a time, Add one row of Zeroes for buffer.<br />
Save your progress.<br />
<br />
Search&gt;GoTo 0<br />
Once you get there:<br />
Search Find&gt;00FDC00001013800<br />
<br />
Hit OK, when it brings you to that hit F3, it should find another one.<br />
<br />
Copy your&nbsp;&nbsp;035D0000[Your Offset with a Zero in front of it] and paste write it right there.<br />
<br />
Save and test your work!<br />
<br />
Using wotf.py<br />
--------------------<br />
Basically. I'm not going to teach how to use cmd.<br />
The Model I provided should be rotated 180 degrees from origin for this conversion.<br />
<br />
Open the file in cmd and for the variables type:<br />
<br />
-s 45 -b 06 -a 0x38000 -o NewSword.zobj New Sword.obj<br />
<br />
Open a Clean object Link Boy into HxD as well as the generated .zobj<br />
<br />
you'll see a buttload of 00s, just simply go to Edit&gt;Select Block and type in for length 37800.<br />
When Selected just hit backspace.<br />
<br />
Hit hit Ctrl + A or go to select all. Copy that, now go to the VERY END of Link's file and Paste write it.<br />
<br />
Now, remember that DList Offset?<br />
<br />
In Note/Word Pad Type<br />
DE 00 00 00 06 [Your Offset]<br />
DE 00 00 00 06 02 1C E8 -Adult Link's Hand Model<br />
DF 00 00 00 00 00 00 00<br />
<br />
Back in HxD in Object_Link_Boy, got to Seacrh&gt;GoTo and for that offset type 21F78. Hit OK.<br />
Now Copy And Paste Write<br />
DE 00 00 00 06 [Your Offset]<br />
DE 00 00 00 06 02 1C E8<br />
DF 00 00 00 00 00 00 00<br />
<br />
Right in that spot.<br />
<br />
Go back to GoTo and this time put 27078<br />
<br />
And Paste Write the same thing.<br />
<br />
Save.<br />
<br />
NJECTING INTO THE ROM<br />
-------------------------------------------<br />
Open a CLEAN DEBUG ROM in HxD.<br />
Go To Search&gt;GoTo 035D0000<br />
<br />
You'll see a buttload of FFs.<br />
Copy Link's ENTIRE EDITED FILE and paste write it right there.<br />
Document the offset in the lower left hand corner and add a 0 in front of it.<br />
Your Notes should be 035D0000[Your Offset with a Zero in front of it]<br />
<br />
Now (assuming you have it set to show 16 bytes at a time, Add one row of Zeroes for buffer.<br />
Save your progress.<br />
<br />
Search&gt;GoTo 0<br />
Once you get there:<br />
Search Find&gt;00FDC00001013800<br />
<br />
Hit OK, when it brings you to that hit F3, it should find another one.<br />
<br />
Copy your&nbsp;&nbsp;035D0000[Your Offset with a Zero in front of it] and paste write it right there.<br />
<br />
Save and test your work!]]></description>
		<pubDate>Tue, 17 Apr 2012 12:24:21 +0000</pubDate>
		<guid isPermaLink="false">3</guid>
		<creator>SanguinettiMods</creator>
		<category>1</category>
	</item>
	<item>
		<title><![CDATA[BBCode &#38; You]]></title>
		<link>http://www.the-gcn.com/tutorials/article/1-bbcode-you/</link>
		<description><![CDATA[Well, I figure that since there's a few extra BBCodes installed at The GCN, that I should give this little example of what each one is, and how to use it. Many of these BBCodes can be found by clicking on the dropdown box labeled "Other styles". Others will have buttons. These will be provided with a graphical representation. The ones provided may differ to the ones you see depending on the skin you"re using. Some also have their own dropdown box. Otherwise, you can also use the tags. So, here goes. =P<br />
<br />
<hr class='bbc' /><br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Acronym</strong></span></span><br />
This one seems rather meh, but it was one of the pre-installed BBCodes, so yeah. Anyway, the purpose of this is to allow for people to understand an acronym when hovering over it. For example, everyone should know by now exactly what GCN stands for, when used for the community. So, by using the "acronym" tags, we can get the proper results.<br />
<br />
I am a part of The <acronym title='Gamer&#039;s Collective Network' class='bbc'>GCN</acronym> community.<br />
<br />
<strong class='bbc'>Usage:</strong> Use only when abbreviating something advanced.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Avatar</strong></span></span><br />
Strictly for use by those with an XBox LIVE account, the "avatar" tag allows users to show their XBox LIVE Avatar. Here's an example:<br />
<br />
[avatar]AkuNoOuji[/avatar]<br />
<br />
<strong class='bbc'>Usage:</strong> In a thread dedicated to XBox LIVE.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Background-color</strong></span></span><br />
Self-explanitory. The "background" tags provide a background to go behind your text.<br />
<br />
In this example, the background colour is red.<br />
<br />
<strong class='bbc'>Usage:</strong> Free to use, in moderation.<br />
::No RTE access. Tag only.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Blog Entry Link</strong></span></span><br />
If you have a blog on this community, you can post a direct link to that entry using the "entry" tags.<br />
<br />
<a href='http://www.the-gcn.com/index.php?app=blog&showentry=1' class="bbc_url">Critique of Nioshi</a><br />
<br />
<strong class='bbc'>Usage:</strong> Only if you have a blog hosted on The GCN, and wish to point out a specific entry. As a demo, I"m providing the link to one of Tell-Tale Heart's entries.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Blog Link</strong></span></span><br />
Like the previous BBCode, the "blog" tags do just the same, only instead of a specific blog entry, it links you to the main blog ID. As a demo, I"m providing the link to Tell-Tale Heart's blog.<br />
<br />
<a href='http://www.the-gcn.com/index.php?app=blog&showblog=1' class="bbc_url">Tell-Tale Heart's Blog</a><br />
<br />
<strong class='bbc'>Usage:</strong> As previous.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Bold</strong></span></span><br />
Another obvious one. This BBCode simply bolds the text you place within the "b" tags.<br />
<br />
This text is average. <strong class='bbc'>This is bold.</strong><br />
<br />
<strong class='bbc'>Usage:</strong> Whenever emphasis is necessary, for example, titles and headers, or important notes.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/bold.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Center</strong></span></span><br />
Obvious BBCode is obvious. This BBCode centers the text you place within the "center" tags.<br />
<p class='bbc_center'>Centered text is centered.</p>
<br />
<br />
<strong class='bbc'>Usage:</strong> Where centered text is warranted. Headers and titles are usually the only things warranting such a BBCode.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/align_center.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Code</strong></span></span><br />
Places text within the "code" tags inside a codebox, where special formatting is used.<br />
<br />
<pre class='prettyprint'>$text = "Hello World!";</pre>
<br />
<strong class='bbc'>Usage:</strong> Only where code is necessary to be posted.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/code.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Colour</strong></span></span><br />
This one's simple. It parses the text you place within the "color" tags as the colour you provide in the options.<br />
<br />
<span style='color: red'>This text is red.</span><br />
<br />
<strong class='bbc'>Usage:</strong> Text coloration is free to use.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/font_color.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Email Address</strong></span></span><br />
Parses the email address you provide within the "email" tags as a link. Options can also be provided, allowing for two ways of providing the link.<br />
<br />
If you should require any assistance, please <a href='mailto:admin@site.com' title='E-mail Link' class='bbc_email'>email an administrator</a>. Additionally, his address is [email=""]admin@site.com[/email]<br />
<br />
<strong class='bbc'>Usage:</strong> Whenever email addresses need to be provided.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/email.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Font</strong></span></span><br />
This BBCode simply changes the text within the "font" tags into the font you specify.<br />
<br />
<span style='font-family: Georgia'>This font is Georgia.</span><br />
<br />
<strong class='bbc'>Usage:</strong> Font tags are free to use.<br />
::Located in Fonts dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Horizontal Rule</strong></span></span><br />
The Horizontal Rule simply adds a &lt;hr&gt; to the post. The "hr" tag doesn"t need to be closed, merely replicating the &lt;hr&gt; HTML code.<br />
<br />
<hr class='bbc' /><br />
I just used it. See? =P<br />
<br />
<strong class='bbc'>Usage:</strong> Only when separating headers.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>HTML Code</strong></span></span><br />
This BBCode allows you to show people the HTML used in page design without worrying about the code being parsed. Simply place your code between the "html" tags. All spacing will be kept intact.<br />
<br />
<pre class='prettyprint lang-html'>&lt;div class="outer"&gt;
  &lt;p&gt;The Gamer's Collective Network, or The GCN for short, is a community dedicated to gaming.&lt;/p&gt;
&lt;/div&gt;</pre>
<br />
<strong class='bbc'>Usage:</strong> Whenever sharing HTML code.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Image</strong></span></span><br />
Fairly straight forward. The image BBCode parses pictures whenever their URL is placed between the "img" tags.<br />
<br />
<span rel='lightbox'><img src='http://www.the-gcn.com/images/download.png' alt='Posted Image' class='bbc_img' /></span><br />
The image above is often used when providing a download link.<br />
<br />
<strong class='bbc'>Usage:</strong> Free to use, providing proper etiquette is given, and the community Terms of Service are adhered to.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/picture.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Image Left</strong></span></span><br />
As with the "img" tags, an image URL placed within the "imgleft" tags will parse an image, but the image will be shown on the left side of the post, with any text that is placed immediately after the closing tag parsing neatly to the right of the image.<br />
<br />
[imgleft]<a href='http://www.the-gcn.c...es/download.png' class='bbc_url' title='External link' rel='nofollow external'>http://www.the-gcn.c...es/download.png</a>[/imgright] The GCN uses the image provided to the right as a means of providing a download link to certain files. In this example, however, you will find that it does nothing. It's just there for show, to allow you to see exactly how awesome it is. =P<br />
<br />
<strong class='bbc'>Usage:</strong> The same rules as the "img" and "imgleft" tags apply.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Indent</strong></span></span><br />
Exactly as it says, it indents text placed within the "indent=X" tags to make it stand out a little more, where X is the number to be used.<br />
<br />
<p class='bbc_indent' style='margin-left: 120px;'>This text is indented!</p>
<br />
This text is not.<br />
<br />
<strong class='bbc'>Usage:</strong> Where necessary.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/indent.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Italics</strong></span></span><br />
Another simple one. It simply italicises text between the "i" tags.<br />
<br />
<em class='bbc'>A-like so. =P</em><br />
<br />
<strong class='bbc'>Usage:</strong> Free to use.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/italic.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Left</strong></span></span><br />
Left-aligns text placed between the "left" tags.<br />
<br />
 <br />
<p class='bbc_left'>You may not notice, but this text is actually left-aligned.</p>
<br />
<strong class='bbc'>Usage:</strong> Only if you need to split text to separate sides of the post.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/align_left.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Lists</strong></span></span><br />
This BBCode can be a little more confusing, especially so since there are 3 kinds of lists; an unordered list, or bullet list; an ordered list, or numbered list; and a multidimensional list. The "list" tags are used in all examples, but options sometimes need to be provided. I will show all 3 lists in this example.<br />
<br />
<ul class='bbc'><li>This is an unordered (bullet) list.</li></ul><ul class='bbcol decimal'><li>This is an ordered list.<br /></li><li>It really is.<br /></li><li>Truly.</li></ul><ul class='bbcol decimal'><li>This list you see here is multidimensional.<br />
<ul class='bbc'><li>Yup, it's true.</li></ul></li></ul>
<br />
<strong class='bbc'>Usage:</strong> Wherever lists are necessary.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/unordered_list.png' alt='Posted Image' class='bbc_img' /></span> - <em class='bbc'>unordered list</em>) and (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/ordered_list.png' alt='Posted Image' class='bbc_img' /></span> - <em class='bbc'>ordered list</em>). The multidimensional list merely merges two lists, by inserting another list in an already existing tag.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Member</strong></span></span><br />
Another BBCode which does not require a closing tag, "member" simply parses the name provided within the option. For example:<br />
<br />
Hi, my name is .<br />
<br />
<strong class='bbc'>Usage:</strong> Free to use when necessary.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>NXE Gamertag</strong></span></span><br />
<del class='bbc'>If you"re a member of XBox Live, you can show your gamertag easily. Simply place your gamertag between the "nxetag" tags, and it will be parsed for you. Here's mine.<br />
<br />
[nxetag]AkuNoOuji[/nxetag]<br />
<br />
<strong class='bbc'>Usage:</strong> Free to use when necessary.<br />
::Located in Other styles dropdown.</del><br />
<span style='color: #FF0000'>This BBCode is now defunct, due to the closer of MyGamerCard.</span><br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Off Topic</strong></span></span><br />
Should you ever have anything to say that doesn"t correlate to the main topic of discussion, you can now post it within "offtopic" tags, and it will be parsed accordingly.<br />
<br />
<table style="margin:0; width:99%; border:0px solid #7F7F7F;"><tr><td style=" vertical-align: middle; text-align:center; width: 10%"><font style="color:gray;font-size:9pt"><b><i> OFF TOPIC: </i></b></font>
</td><td width="82%" valign="middle" style="padding: 2px;" cellpadding="0"><font style="color: 	#B0B0B0;font-size:7pt; align:left;">lol this is sooooo off topic.</font></td></tr></table><br />
<br />
<strong class='bbc'>Usage:</strong> Whenever you have something to say that doesn"t correlate to the main topic of discussion. Please note that you must also have something on topic to say, otherwise your post may be deleted.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_extra/bbcode_icons/x-offtopic.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>PHP Code</strong></span></span><br />
Identical to HTML Code, except instead of parsing HTML, it parses PHP code, using "php" tags.<br />
<br />
<pre class='prettyprint'>$variable = true;

print_r($variable);</pre>
<br />
<strong class='bbc'>Usage:</strong> Same rules as HTML BBCode apply.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Post Link</strong></span></span><br />
This one's a bit easy too. Should there be a post in which you find particularly important to point someone in the direction of, simply use the "post" tags. You will need to know the ID number of the post in question.<br />
<br />
<a href='http://www.the-gcn.com/index.php?act=findpost&pid=93' class="bbc_url">This is the Resurrection post that I made upon restoring The GCN to its former self.</a><br />
<br />
<strong class='bbc'>Usage:</strong> Free to use when necessary.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Post Snap Back</strong></span></span><br />
Does almost the same thing as the "post" tags, but instead of a link which you must provide the text for, the "snapback" tags parse an image for you. Here's an example using the same post as before.<br />
<br />
<a href='http://www.the-gcn.com/index.php?app=forums&module=forums&section=findpost&pid=93' class='bbc_url'><img src='http://www.the-gcn.com/public/style_images/currentlite/snapback.png' alt='View Post' /></a><br />
<br />
<strong class='bbc'>Usage:</strong> Free to use when necessary.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Quote</strong></span></span><br />
Now, this one is easy enough. This BBCode parses quotations from text placed within the "quote" tags. However, there are two ways you can quote. The second way is easy enough. Here's the first way.<br />
<br />
<p class='citation'>Quote</p><div class="blockquote"><div class='quote'>This is a quote.</div></div>
<br />
<strong class='bbc'>Usage:</strong> Free to use when necessary.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/quote.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Right</strong></span></span><br />
Same as the "left" tags, except the "right" tags right-align all text contained within them.<br />
<br />
<br />
<br />
<p class='bbc_right'>You can see how this text is right aligned.</p>
<br />
<strong class='bbc'>Usage:</strong> Only when right-aligned text is necessary.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/align_right.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Size</strong></span></span><br />
This one is simple. Text contained within the "size" tags is parsed at the size provided within the option.<br />
<br />
<span style='font-size: 8px;'>This text is tiny, no? =P</span><br />
<br />
<strong class='bbc'>Usage:</strong> Size emphasises words, and as such, should be used only when necessary.<br />
::Located in Sizes dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Spoiler</strong></span></span><br />
Parses all content within the "spoiler" tags inside a box which requires you to click a button in order to view it.<br />
<br />
<div class='bbc_spoiler'>
	<span class='spoiler_title'>Spoiler</span> <input type='button' class='bbc_spoiler_show' value='Show' />
	<div class='bbc_spoiler_wrapper'><div class='bbc_spoiler_content' style="display:none;">You are now reading this spoiler. =P</div></div>
</div>
<br />
<strong class='bbc'>Usage:</strong> As this is a gaming forum, I"d expect this to be used rather frequently. However, it is recommended that it be spared for content that reveals a MAJOR plot device.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>SQL Code</strong></span></span><br />
Another one that is identical to the HTML/PHP tags, only instead, this one uses "sql" tags, and shows SQL content.<br />
<br />
<pre class='prettyprint lang-sql'>SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7</pre>
<br />
<strong class='bbc'>Usage:</strong> Only when sharing SQL related information, i.e. providing assistance to someone who needs SQL help.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Strike</strong></span></span><br />
Places a strike-through line through text placed between "s" tags.<br />
<br />
<del class='bbc'>I am Fire Shadow.</del><br />
Correction, I am Shadow Fire.<br />
<br />
<strong class='bbc'>Usage:</strong> Whenever you have posted something that is a mistake, and you edit the post to correct the mistake, simply place the mistaken content within the strike tags instead of deleting it. Afterwards, place your corrected content underneath.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/strike.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Subscript</strong></span></span><br />
Places the content within "sub" tags slightly lower.<br />
<br />
H<sub class='bbc'>2</sub>O is the chemical compound for water.<br />
<br />
<strong class='bbc'>Usage:</strong> Subscript is mainly used when discussing chemicals, but it is free to use when necessary.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/subscript.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Superscript</strong></span></span><br />
The opposite of subscript, superscript places text within the "sup" tags slightly higher.<br />
<br />
8<sup class='bbc'>2</sup> = 64. Get it? Nintendo<sup class='bbc'>64</sup>. =P<br />
<br />
<strong class='bbc'>Usage:</strong> Superscript is mainly used in mathematical equation, but it is free to use when necessary.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/superscript.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Topic Link</strong></span></span><br />
Just like the Post Link, only instead of showing the post ID, it uses the "topic" tags to link to the topic ID.<br />
<br />
<a href='http://www.the-gcn.com/index.php?showtopic=69' class="bbc_url">Once again, the Resurrection topic.</a><br />
<br />
<strong class='bbc'>Usage:</strong> Use when directing someone to a specific topic.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Twitter</strong></span></span><br />
For those of you who use Twitter... *groan*... this one's for you. Simply place an account username between the "twitter" tags, and it will be parsed. For this example, here's Nintendo of America's twitter account.<br />
<br />
<a href='http://www.twitter.com/NintendoAmerica' class="bbc_url">@NintendoAmerica</a><br />
<br />
<strong class='bbc'>Usage:</strong> Free to use when necessary.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/twitter.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>Underline</strong></span></span><br />
Very simple. Content placed between the "u" tags is underlined.<br />
<br />
<span class='bbc_underline'>ZOOM!</span><br />
<br />
<strong class='bbc'>Usage:</strong> Headers mainly, but can also be used for emphasis. Free to use.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/underline.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>URL</strong></span></span><br />
Posts a URL using provided content within the "url" tags. Simple as that. As with some BBCode, there are two ways of using it.<br />
<br />
<a href='http://www.the-gcn.com' class='bbc_url' title=''>http://www.the-gcn.com</a> or The GCN.<br />
<br />
<strong class='bbc'>Usage:</strong> Free to use when posting links.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_images/current/rte_icons/link.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>XML Code</strong></span></span><br />
The last in the family of coding. Just like HTML/PHP/SQL, this one parses XML, using the "xml"tags.<br />
<br />
<pre class='prettyprint lang-xml'>&lt;outer&gt;
&lt;inner&gt;
  &lt;tag param="1"&gt;This is it... XML.&lt;/tag&gt;
&lt;/inner&gt;
&lt;/outer&gt;</pre>
<br />
<strong class='bbc'>Usage:</strong> The same guidelines apply to XML as the HTML/PHP/SQL tags.<br />
::Located in Other styles dropdown.<br />
<br />
<br />
<span style='font-size: 14px;'><span style='font-family: Georgia'><strong class='bbc'>YouTube</strong></span></span><br />
The last of the BBCode, this parses a YouTube video whenever its video ID is placed between the "youtube" tags. Contrary to previous YouTube tags, this one now allows for full-screen switching.<br />
<br />
<object width="425" height="355"><param name="movie" value="http://youtube.com/v/QFURvrQIqyo&$2&fs=1&hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="transparent"></param><embed src="http://youtube.com/v/QFURvrQIqyo&$2&fs=1&hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" wmode="transparent" width="425" height="355"></embed></object><br />
<br />
<strong class='bbc'>Usage:</strong> Free to use when necessary.<br />
::RTE button (<span rel='lightbox'><img src='http://www.the-gcn.com/public/style_extra/bbcode_icons/youtube.png' alt='Posted Image' class='bbc_img' /></span>).<br />
<br />
<p class='bbc_center'><span style='font-size: 36px;'><span style='font-family: Comic Sans MS'>*****</span></span></p>
<br />
<br />
That's all of them~! Well, all the ones publicly usable. There are ones that only the administration team can use. If you need any further assistance, simply let me know, or click [url="http://www.the-gcn.com/index.php?app=forums&amp;module=extras%C2%A7ion=legends&amp;do=bbcode"]here.]]></description>
		<pubDate>Mon, 16 Apr 2012 09:46:25 +0000</pubDate>
		<guid isPermaLink="false">1</guid>
		<creator>Karkat Vantas</creator>
		<category>1</category>
	</item>
</channel>
</rss>
