Software Information
    Document Software: XMB Version 1.9.8 SP2 Engage Final
    Author: The XMBGroup
    Reference: http://xmbforum.com
                     http://xmbhacks.com

Hack/Modification Information
    Branch Title: Show All Built-in BBCodes
    Version: 1.0 Gamma
    Build ID: 0ID/200802052145
    Description: This mod will display the Strike-through and Marquee BBCode
    functions when making a post.

Document Information
    Author: Train (Michael Fraker)
    Referral URL: http://svn.otakuscion.com
    Last Updated: February 21, 2008 at 830 AM EDT

=============================================================================
Step 1: Open English.lang.php
=============================================================================
=============================================================================
Find
=============================================================================

?>

=============================================================================
Add Above:
=============================================================================

// Show All Built-in BBCodes Mod Begin
$lang['bbcode_prompt_strikethrough'] = "Please enter the text that should have a strike-through";
$lang['bbcode_prompt_marquee'] = "Please enter the text that should be scrolled in marquee";
$lang['cb_insert_strike'] = "Insert strike-through text";
$lang['cb_insert_marquee'] = "Insert marquee text";
$lang['bbcode_help_strikethrough'] = "Strike Tag\\nInserts a line through text which you are using.\\nUsage: [strike]This is formatted text[/strike]";
$lang['bbcode_help_marquee'] = "Marquee Tag\\nFormats used text into a marquee scrollbar.\\nUsage: [marquee]This is formatted text[/marquee]";
// Show All Built-in BBCodes Mod End

=============================================================================
Note Before Continuing
=============================================================================

Save and upload the affected file at this time. Once you are done, go to your
forums, and then to the administration panel. From there select templates and
follow the instructions below.

Upload the included bbcode-mozilla.bin, bbcode-ie.bin, and
bbcode-opera.bin file located in the Contents/js folder to your forum js directory.

Upload the included buttons located in the Contents/buttons folder to all your
theme folders.

=============================================================================
Step 2: Open functions_bbcode template
=============================================================================
=============================================================================
Find
=============================================================================

var bbcode_help_underline = "$lang[bbcode_help_underline]";
var bbcode_prompt_underline = "$lang[bbcode_prompt_underline]";

=============================================================================
Add Below
=============================================================================

var bbcode_help_strikethrough = "$lang[bbcode_help_strikethrough]";
var bbcode_prompt_strikethrough = "$lang[bbcode_prompt_strikethrough]";
var bbcode_help_marquee = "$lang[bbcode_help_marquee]";
var bbcode_prompt_marquee = "$lang[bbcode_prompt_marquee]";

=============================================================================
Find
=============================================================================

<script language="JavaScript" type="text/javascript" src="./js/bbcodefns-$browser.js"></script>

=============================================================================
Add This Below
=============================================================================

<script language="JavaScript" type="text/javascript" src="./js/bbcode-$browser.bin.js"></script>

=============================================================================
Step 3: Open functions_bbcodeinsert template
=============================================================================
=============================================================================
Find
=============================================================================

<a href="javascript:list()"><img src="$imgdir/bb_list.gif" border="0" width="23" height="22" alt="$lang[cb_insert_list]" /></a></td>

=============================================================================
Replace With:
=============================================================================

<a href="javascript:list()"><img src="$imgdir/bb_list.gif" border="0" width="23" height="22" alt="$lang[cb_insert_list]" /></a>
<a href="javascript:strikethrough()"><img src="$imgdir/bb_strike.gif" border="0" width="23" height="22" alt="$lang[cb_insert_strike]" /></a>
<a href="javascript:marquee()"><img src="$imgdir/bb_marquee.gif" border="0" width="23" height="22" alt="$lang[cb_insert_marquee]" /></a>
</td>

=============================================================================
INSTALLATION COMPLETE
=============================================================================

The installation of this modification is now complete. Enjoy!