-
Bug
-
Resolution: Fixed
-
None
It used to say "Invalid use of code tags" for this mod that I made with mod studio. Smithy_dll said he fixed it, which he didn't. It doesn't say "Invalid use of code tags" any more but it still says that it failed.
## easymod compliant
|
##############################################################
|
## MOD Title: Cool letters
|
## MOD Author: Dapaintballer331 < dapaintballer331@gmail.com > (Brandon Nalls) http://www.gamerssoft.com
|
## MOD Description: Makes a simple text to awsome ascii code letters. No need to memorize leter codes. EX: Çððl lꆆêr§. Öððððððh Ämåzïñg
|
## MOD Version: 1.1.0
|
##
|
## Installation Level: Easy
|
## Installation Time: 5 minutes
|
## Files To Edit: templates/subSilver/overall_header.tpl
|
## language/lang_english/lang_main.php
|
## includes/page_header.php
|
## Included Files: letters.php
|
## letters.tpl
|
## License:
|
## Generator: MOD Studio [ ModTemplateTools 1.0.2232.38226 ]
|
##############################################################
|
## For security purposes, please check: http://www.phpbb.com/mods/
|
## for the latest version of this MOD. Although MODs are checked
|
## before being allowed in the MODs Database there is no guarantee
|
## that there are no security problems within the MOD. No support
|
## will be given for MODs not found within the MODs Database which
|
## can be found at http://www.phpbb.com/mods/
|
##############################################################
|
## Author Notes: The general actions are EasyMod Compatible. Templates obviously vary a lot, so overall_header.php may give errors with easymod. Simply add a link to letters.php yourself, it's very easy.
|
##
|
## Besides overall_header.php everything else will deffinitly work fine with EasyMod.
|
##############################################################
|
## MOD History:
|
##
|
## 2004-10-27 - Version 1.0.0
|
## - First Stable release. Version 1.0.0 of a MOD is always it's first stable release.
|
##
|
## 2006-03-23 - Version 1.0.1
|
## -Compatibility added for 2.0.19 Not yet language friendly, and not yet 100% template friendly, but it WILL come soon.
|
##
|
## 2006-03-24 - Version 1.1.0
|
## -Language friendly. Simply make your own changes to lang_main.php, because letters.tpl is now dynamic.
|
##
|
##############################################################
|
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
|
##############################################################
|
|
#
|
#-----[ COPY ]------------------------------------------
|
#
|
copy letters.php to letters.php
|
#
|
#-----[ COPY ]------------------------------------------
|
#
|
copy letters.tpl to templates/subSilver/letters.tpl
|
#
|
#-----[ OPEN ]------------------------------------------
|
#
|
templates/subSilver/overall_header.tpl
|
#
|
#-----[ FIND ]------------------------------------------
|
#
|
{L_PROFILE}</a>
|
#
|
#-----[ IN-LINE FIND ]------------------------------------------
|
#
|
L_PROFILE}</a>
|
#
|
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
|
#
|
<td height="25" align="center" valign="top" nowrap="nowrap"><span class="mainmenu"> <a href="letters.php" class="mainmenu"> :Letter Generator:</a>
|
#
|
#-----[ OPEN ]------------------------------------------
|
#
|
language/lang_english/lang_main.php
|
#
|
#-----[ FIND ]------------------------------------------
|
#
|
|
$lang['General_Error'] = 'General Error';
|
#
|
#-----[ BEFORE, ADD ]------------------------------------------
|
#
|
|
$lang['letters1'] = 'Enter Text to Convert In the Box Below then Press the Convert Button';
|
$lang['letters2'] = 'Convert';
|
$lang['letters3'] = 'Created by';
|
#
|
#-----[ OPEN ]------------------------------------------
|
#
|
includes/page_header.php
|
#
|
#-----[ FIND ]------------------------------------------
|
#
|
|
'L_USERNAME' => $lang['Username'],
|
'L_PASSWORD' => $lang['Password'],
|
#
|
#-----[ BEFORE, ADD ]------------------------------------------
|
#
|
|
'L_letters1' => $lang['letters1'],
|
'L_letters2' => $lang['letters2'],
|
'L_letters3' => $lang['letters3'],
|
#
|
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
|
#
|
# EoM
|