News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

Hide Tag Special

Started by enik, April 11, 2005, 03:41:07 PM

Previous topic - Next topic

ディン1031

Quote from: meko me on December 21, 2009, 08:56:18 AM
hello i'm using RC2 please kindly update the bbc button for this mod please :)

regards :)
Already done...
Support only via MOD Thread! NO PM Support!
My Forum: ayu][kult Forum
My Mods: My Small Mod Collection
My Parser: DIN1031's ModParser
Current Info: More away the next days, because i've to much work to do :x

Oskarlover

Im trying to install this mode but i go this error:
Error in Package Installation
At least one error was encountered during a test installation of this package. It is strongly recommended that you do not continue with installation unless you know what you are doing, and have made a backup very recently. This error may be caused by a conflict between the package you're trying to install and another package you have already installed, an error in the package, a package which requires another package that you don't have installed yet, or a package designed for another version of SMF.



5. Execute Modification ./Sources/Post.php Test failed


Everything else seems to be ok.

so im scared, what do i need to do?

I have the latest RC 2.0 2.2

herace

HideTagSpecial236_(2.0RC2_Compatible) error:

Failed

Subs.php
Find:
static $disabled;

Add After:
static $disabled;

// On the first Parsing i will gernerate all things i need ;) after that it's not needable :)
if (!isset($modSettings['hide_preparedOption']))
{
// First there is nothing in it ;)
$modSettings['hide_preparedOption']['hiddentext'] = ' ';
$modSettings['hide_preparedOption']['unhiddentext'] = ' ';

if (empty($modSettings['hide_noinfoforguests']) || !$user_info['is_guest'])
{
// Prepare the hidden information :)
$modSettings['hide_preparedOption']['hiddentext'] = isset($modSettings['hide_hiddentext']) ? $modSettings['hide_hiddentext'] : '';
$modSettings['hide_preparedOption']['hiddentext'] = str_replace('$language', $user_info['language'], $modSettings['hide_preparedOption']['hiddentext']);
if (!empty($modSettings['hide_MUIswitch']) && isset($txt['hide_hiddentext']))
$modSettings['hide_preparedOption']['hiddentext'] = str_replace('$txtvariable', $txt['hide_hiddentext'], $modSettings['hide_preparedOption']['hiddentext']);
if (!empty($modSettings['hide_enableHTML']))
$modSettings['hide_preparedOption']['hiddentext'] = un_htmlspecialchars($modSettings['hide_preparedOption']['hiddentext']);

// Prepare the unhidden infomation?
if (!empty($modSettings['hide_enableUnhiddenText']))
{
$modSettings['hide_preparedOption']['unhiddentext'] = isset($modSettings['hide_unhiddentext']) ? $modSettings['hide_unhiddentext'] : '';
$modSettings['hide_preparedOption']['unhiddentext'] = str_replace('$language', $user_info['language'], $modSettings['hide_preparedOption']['unhiddentext']);
if (!empty($modSettings['hide_MUIswitch']) && isset($txt['hide_unhiddentext']))
$modSettings['hide_preparedOption']['unhiddentext'] = str_replace('$txtvariable', $txt['hide_unhiddentext'], $modSettings['hide_preparedOption']['unhiddentext']);
if (!empty($modSettings['hide_enableHTML']))
$modSettings['hide_preparedOption']['unhiddentext'] = un_htmlspecialchars($modSettings['hide_preparedOption']['unhiddentext']);
}
}

// So prepare the unhidden Option for the Parser ;)
if (!empty($modSettings['hide_useSpanTag']))
{
$modSettings['hide_preparedOption']['before_info'] = '<span class="hiddencontent">';
$modSettings['hide_preparedOption']['after_info'] = '</span>';
}
else
{
$modSettings['hide_preparedOption']['before_info'] = '<div class="hiddencontent">';
$modSettings['hide_preparedOption']['after_info'] = '</div>';
}

// Okay Let's see where i must put the unhidden Informations :)
if (!empty($modSettings['hide_enableUnhiddenText']) && empty($modSettings['hide_onlyonetimeinfo']))
{
if (empty($modSettings['hide_posUnhiddenText']) || $modSettings['hide_posUnhiddenText'] == 4)
$modSettings['hide_preparedOption']['after_info'] .= $modSettings['hide_preparedOption']['unhiddentext'];
elseif ($modSettings['hide_posUnhiddenText'] == 3)
$modSettings['hide_preparedOption']['after_info'] = $modSettings['hide_preparedOption']['unhiddentext'].$modSettings['hide_preparedOption']['after_info'];
elseif ($modSettings['hide_posUnhiddenText'] == 2)
$modSettings['hide_preparedOption']['before_info'] .= $modSettings['hide_preparedOption']['unhiddentext'];
elseif ($modSettings['hide_posUnhiddenText'] == 1)
$modSettings['hide_preparedOption']['before_info'] = $modSettings['hide_preparedOption']['unhiddentext'].$modSettings['hide_preparedOption']['before_info'];
else
$modSettings['hide_preparedOption']['after_info'] .= $modSettings['hide_preparedOption']['unhiddentext'];
}

$modSettings['hide_preparedOption']['parse_content'] = !empty($modSettings['hide_enableUnhiddenText']) && empty($modSettings['hide_onlyonetimeinfo']);

// Okay this is the check up if he is allowed to unhide it everytime! (Risky if wrong setup or diffrent mods can handle hide tag)
$modSettings['hide_preparedOption']['auto_unhide_parser'] = false;
if (!empty($modSettings['hide_unhideparser']) && !empty($modSettings['hide_autounhidegroups']))
{
$modSettings['hide_autounhidegroups'] = !is_array($modSettings['hide_autounhidegroups']) ? explode(',', $modSettings['hide_autounhidegroups']) : $modSettings['hide_autounhidegroups'];
foreach ($user_info['groups'] as $group_id)
if (in_array($group_id, $modSettings['hide_autounhidegroups']))
{
$modSettings['hide_preparedOption']['auto_unhide_parser'] = true;
break; //One is enouph ;D
}
}
}

// Hide Mod.. i remove the code before i do anything...
if ($message !== false && !empty($message))
{
if ($modSettings['hide_preparedOption']['auto_unhide_parser'])
$context['user_post_avaible'] = 1;
// Add the Hidden Text at the end of the post :)
if ((empty($context['user_post_avaible']) || !isset($context['user_post_avaible'])) && !empty($modSettings['hide_onlyonetimeinfo']) && hideTagExists($message, $cache_id))
$message .= '[br]'.$modSettings['hide_preparedOption']['hiddentext'];
// Here i remove this content :) or show onetime unhide info :)
if (!isset($context['user_post_avaible']) || empty($context['user_post_avaible']))
{
// Remove it ;D
$message = preg_replace("/\[hide\](.+?)\[\/hide\]/i", (empty($modSettings['hide_onlyonetimeinfo']) ? $modSettings['hide_preparedOption']['hiddentext'] : "&nbsp"), $message);
$message = preg_replace(array('~\n?\[hide.*?\].+?\[/hide\]\n?~is', '~^\n~', '~\[/hide\]~'), (empty($modSettings['hide_onlyonetimeinfo']) ? $modSettings['hide_preparedOption']['hiddentext'] : "&nbsp"), $message);
}
// Okay i need to add the unhidden information at the end of the post :)
elseif (!empty($context['user_post_avaible']) && !empty($modSettings['hide_onlyonetimeinfo']) && !empty($modSettings['hide_enableUnhiddenText']) && hideTagExists($message, $cache_id))
$message .= '[br]'.$modSettings['hide_preparedOption']['unhiddentext'];
}

Oskarlover

Quote from: herace on December 28, 2009, 07:30:23 PM
HideTagSpecial236_(2.0RC2_Compatible) error:

Failed

Subs.php
Find:
static $disabled;

Add After:
static $disabled;

// On the first Parsing i will gernerate all things i need ;) after that it's not needable :)
if (!isset($modSettings['hide_preparedOption']))
{
// First there is nothing in it ;)
$modSettings['hide_preparedOption']['hiddentext'] = '&nbsp;';
$modSettings['hide_preparedOption']['unhiddentext'] = '&nbsp;';

if (empty($modSettings['hide_noinfoforguests']) || !$user_info['is_guest'])
{
// Prepare the hidden information :)
$modSettings['hide_preparedOption']['hiddentext'] = isset($modSettings['hide_hiddentext']) ? $modSettings['hide_hiddentext'] : '';
$modSettings['hide_preparedOption']['hiddentext'] = str_replace('$language', $user_info['language'], $modSettings['hide_preparedOption']['hiddentext']);
if (!empty($modSettings['hide_MUIswitch']) && isset($txt['hide_hiddentext']))
$modSettings['hide_preparedOption']['hiddentext'] = str_replace('$txtvariable', $txt['hide_hiddentext'], $modSettings['hide_preparedOption']['hiddentext']);
if (!empty($modSettings['hide_enableHTML']))
$modSettings['hide_preparedOption']['hiddentext'] = un_htmlspecialchars($modSettings['hide_preparedOption']['hiddentext']);

// Prepare the unhidden infomation?
if (!empty($modSettings['hide_enableUnhiddenText']))
{
$modSettings['hide_preparedOption']['unhiddentext'] = isset($modSettings['hide_unhiddentext']) ? $modSettings['hide_unhiddentext'] : '';
$modSettings['hide_preparedOption']['unhiddentext'] = str_replace('$language', $user_info['language'], $modSettings['hide_preparedOption']['unhiddentext']);
if (!empty($modSettings['hide_MUIswitch']) && isset($txt['hide_unhiddentext']))
$modSettings['hide_preparedOption']['unhiddentext'] = str_replace('$txtvariable', $txt['hide_unhiddentext'], $modSettings['hide_preparedOption']['unhiddentext']);
if (!empty($modSettings['hide_enableHTML']))
$modSettings['hide_preparedOption']['unhiddentext'] = un_htmlspecialchars($modSettings['hide_preparedOption']['unhiddentext']);
}
}

// So prepare the unhidden Option for the Parser ;)
if (!empty($modSettings['hide_useSpanTag']))
{
$modSettings['hide_preparedOption']['before_info'] = '<span class="hiddencontent">';
$modSettings['hide_preparedOption']['after_info'] = '</span>';
}
else
{
$modSettings['hide_preparedOption']['before_info'] = '<div class="hiddencontent">';
$modSettings['hide_preparedOption']['after_info'] = '</div>';
}

// Okay Let's see where i must put the unhidden Informations :)
if (!empty($modSettings['hide_enableUnhiddenText']) && empty($modSettings['hide_onlyonetimeinfo']))
{
if (empty($modSettings['hide_posUnhiddenText']) || $modSettings['hide_posUnhiddenText'] == 4)
$modSettings['hide_preparedOption']['after_info'] .= $modSettings['hide_preparedOption']['unhiddentext'];
elseif ($modSettings['hide_posUnhiddenText'] == 3)
$modSettings['hide_preparedOption']['after_info'] = $modSettings['hide_preparedOption']['unhiddentext'].$modSettings['hide_preparedOption']['after_info'];
elseif ($modSettings['hide_posUnhiddenText'] == 2)
$modSettings['hide_preparedOption']['before_info'] .= $modSettings['hide_preparedOption']['unhiddentext'];
elseif ($modSettings['hide_posUnhiddenText'] == 1)
$modSettings['hide_preparedOption']['before_info'] = $modSettings['hide_preparedOption']['unhiddentext'].$modSettings['hide_preparedOption']['before_info'];
else
$modSettings['hide_preparedOption']['after_info'] .= $modSettings['hide_preparedOption']['unhiddentext'];
}

$modSettings['hide_preparedOption']['parse_content'] = !empty($modSettings['hide_enableUnhiddenText']) && empty($modSettings['hide_onlyonetimeinfo']);

// Okay this is the check up if he is allowed to unhide it everytime! (Risky if wrong setup or diffrent mods can handle hide tag)
$modSettings['hide_preparedOption']['auto_unhide_parser'] = false;
if (!empty($modSettings['hide_unhideparser']) && !empty($modSettings['hide_autounhidegroups']))
{
$modSettings['hide_autounhidegroups'] = !is_array($modSettings['hide_autounhidegroups']) ? explode(',', $modSettings['hide_autounhidegroups']) : $modSettings['hide_autounhidegroups'];
foreach ($user_info['groups'] as $group_id)
if (in_array($group_id, $modSettings['hide_autounhidegroups']))
{
$modSettings['hide_preparedOption']['auto_unhide_parser'] = true;
break; //One is enouph ;D
}
}
}

// Hide Mod.. i remove the code before i do anything...
if ($message !== false && !empty($message))
{
if ($modSettings['hide_preparedOption']['auto_unhide_parser'])
$context['user_post_avaible'] = 1;
// Add the Hidden Text at the end of the post :)
if ((empty($context['user_post_avaible']) || !isset($context['user_post_avaible'])) && !empty($modSettings['hide_onlyonetimeinfo']) && hideTagExists($message, $cache_id))
$message .= '[br]'.$modSettings['hide_preparedOption']['hiddentext'];
// Here i remove this content :) or show onetime unhide info :)
if (!isset($context['user_post_avaible']) || empty($context['user_post_avaible']))
{
// Remove it ;D
$message = preg_replace("/\[hide\](.+?)\[\/hide\]/i", (empty($modSettings['hide_onlyonetimeinfo']) ? $modSettings['hide_preparedOption']['hiddentext'] : "&nbsp"), $message);
$message = preg_replace(array('~\n?\[hide.*?\].+?\[/hide\]\n?~is', '~^\n~', '~\[/hide\]~'), (empty($modSettings['hide_onlyonetimeinfo']) ? $modSettings['hide_preparedOption']['hiddentext'] : "&nbsp"), $message);
}
// Okay i need to add the unhidden information at the end of the post :)
elseif (!empty($context['user_post_avaible']) && !empty($modSettings['hide_onlyonetimeinfo']) && !empty($modSettings['hide_enableUnhiddenText']) && hideTagExists($message, $cache_id))
$message .= '[br]'.$modSettings['hide_preparedOption']['unhiddentext'];
}


Is thats for me?

ディン1031

Quote from: Oskarlover on December 28, 2009, 07:39:38 AM
Im trying to install this mode but i go this error:
Error in Package Installation
At least one error was encountered during a test installation of this package. It is strongly recommended that you do not continue with installation unless you know what you are doing, and have made a backup very recently. This error may be caused by a conflict between the package you're trying to install and another package you have already installed, an error in the package, a package which requires another package that you don't have installed yet, or a package designed for another version of SMF.



5. Execute Modification ./Sources/Post.php Test failed


Everything else seems to be ok.

so im scared, what do i need to do?

I have the latest RC 2.0 2.2
What Version is 2.0 2.2?
You could tell me what exactly not correct replaced... (In SMF 2.0 RC2 you can look which replace not work)

@herace
Defentiv this is in the code... so there is no error... i think you've mod installed who changed this line...

Code (Subs.php Line 864-873) Select

// Parse bulletin board code in a string, as well as smileys optionally.
function parse_bbc($message, $smileys = true, $cache_id = '', $parse_tags = array())
{
global $txt, $scripturl, $context, $modSettings, $user_info, $smcFunc;
static $bbc_codes = array(), $itemcodes = array(), $no_autolink_tags = array();
static $disabled;

// Never show smileys for wireless clients.  More bytes, can't see it anyway :P.
if (WIRELESS)
$smileys = false;


Support only via MOD Thread! NO PM Support!
My Forum: ayu][kult Forum
My Mods: My Small Mod Collection
My Parser: DIN1031's ModParser
Current Info: More away the next days, because i've to much work to do :x

herace

Quote from: ディン1031 on December 29, 2009, 03:45:17 AM

@herace
Defentiv this is in the code... so there is no error... i think you've mod installed who changed this line...

Code (Subs.php Line 864-873) Select

// Parse bulletin board code in a string, as well as smileys optionally.
function parse_bbc($message, $smileys = true, $cache_id = '', $parse_tags = array())
{
global $txt, $scripturl, $context, $modSettings, $user_info, $smcFunc;
static $bbc_codes = array(), $itemcodes = array(), $no_autolink_tags = array();
static $disabled;

// Never show smileys for wireless clients.  More bytes, can't see it anyway :P.
if (WIRELESS)
$smileys = false;



Thank you.
static $disabled, $parse_tag_cache;

ディン1031

#1226
Okay i offical annonce... there is a incomptible problem with aeva and hide tag special 2.3.6 after the install the '( and :'( smilies are not working anymore... at the moment i do not know why... i hope i find a soulution...
Okay it's avae only problem... tested it...
Support only via MOD Thread! NO PM Support!
My Forum: ayu][kult Forum
My Mods: My Small Mod Collection
My Parser: DIN1031's ModParser
Current Info: More away the next days, because i've to much work to do :x

jaisi

Im trying to install this mode but i go this error:
QuoteError in Package Installation
At least one error was encountered during a test installation of this package. It is strongly recommended that you do not continue with installation unless you know what you are doing, and have made a backup very recently. This error may be caused by a conflict between the package you're trying to install and another package you have already installed, an error in the package, a package which requires another package that you don't have installed yet, or a package designed for another version of SMF.

1. Execute Modification ./Sources/Admin.php Test successful
  1. Replace ./Sources/Admin.php Test successful

2. Execute Modification ./Sources/ManagePosts.php Test successful
  1. Replace ./Sources/ManagePosts.php Test successful
  2. Replace ./Sources/ManagePosts.php Test successful
  3. Replace ./Sources/ManagePosts.php Test successful

3. Execute Modification ./Sources/Subs-Editor.php Test successful
  1. Replace ./Sources/Subs-Editor.php Test successful

4. Execute Modification ./Sources/Display.php Test successful
  1. Add Before ./Sources/Display.php Test successful
  2. Replace ./Sources/Display.php Test successful

5. Execute Modification ./Sources/Post.php Test failed
  1. Replace ./Sources/Post.php Test successful
  2. Replace ./Sources/Post.php Test successful
  3. Replace ./Sources/Post.php Test successful
  4. Replace ./Sources/Post.php Test failed 
  5. Replace ./Sources/Post.php Test successful
  6. Replace ./Sources/Post.php Test successful
  7. Replace ./Sources/Post.php Test successful
  8. Replace ./Sources/Post.php Test successful

6. Execute Modification ./Sources/Search.php Test successful
  1. Add After ./Sources/Search.php Test successful

7. Execute Modification ./Sources/Subs.php Test successful
  1. Add After ./Sources/Subs.php Test successful
  2. Add After ./Sources/Subs.php Test successful
  3. Replace ./Sources/Subs.php Test successful
  4. Replace ./Sources/Subs.php Test successful
  5. Replace ./Sources/Subs.php Test successful

8. Execute Modification ./Themes/default/Admin.template.php Test successful
  1. Replace ./Themes/default/Admin.template.php Test successful

9. Execute Modification ./Sources/Post.php Test successful
  1. Add Before ./Sources/Post.php Test successful

10. Execute Modification ./Themes/default/languages/Admin.english.php Test successful
  1. Add Before ./Themes/default/languages/Admin.english.php Test successful

11. Execute Modification ./Themes/default/languages/Help.english.php Test successful
  1. Add Before ./Themes/default/languages/Help.english.php Test successful

12. Execute Modification ./Themes/default/languages/index.english.php Test successful
  1. Add Before ./Themes/default/languages/index.english.php Test successful

13. Execute Modification ./Themes/default/languages/Admin.german.php Skipping file
14. Execute Modification ./Themes/default/languages/Help.german.php Skipping file
15. Execute Modification ./Themes/default/languages/index.german.php Skipping file
16. Execute Modification ./Themes/default/languages/Admin.english-utf8.php Skipping file
17. Execute Modification ./Themes/default/languages/Help.english-utf8.php Skipping file
18. Execute Modification ./Themes/default/languages/index.english-utf8.php Skipping file
19. Execute Modification ./Themes/default/languages/Admin.german-utf8.php Skipping file
20. Execute Modification ./Themes/default/languages/Help.german-utf8.php Skipping file
21. Execute Modification ./Themes/default/languages/index.german-utf8.php Skipping file
22. Execute Modification ./Themes/default/languages/Admin.greek-utf8.php Skipping file
23. Execute Modification ./Themes/default/languages/Help.greek-utf8.php Skipping file
24. Execute Modification ./Themes/default/languages/index.greek-utf8.php Skipping file
25. Execute Modification ./Themes/default/languages/Admin.turkish.php Skipping file
26. Execute Modification ./Themes/default/languages/Help.turkish.php Skipping file
27. Execute Modification ./Themes/default/languages/index.turkish.php Skipping file
28. Execute Modification ./Themes/default/languages/Admin.russian.php Skipping file
29. Execute Modification ./Themes/default/languages/Help.russian.php Skipping file
30. Execute Modification ./Themes/default/languages/index.russian.php Skipping file
31. Execute Modification ./Themes/default/languages/Admin.russian-utf8.php Skipping file
32. Execute Modification ./Themes/default/languages/Help.russian-utf8.php Skipping file
33. Execute Modification ./Themes/default/languages/index.russian-utf8.php Skipping file
34. Execute Modification ./Themes/default/languages/Admin.czech.php Skipping file
35. Execute Modification ./Themes/default/languages/Help.czech.php Skipping file
36. Execute Modification ./Themes/default/languages/index.czech.php Skipping file
37. Execute Modification ./Themes/default/languages/Admin.czech-utf8.php Skipping file
38. Execute Modification ./Themes/default/languages/Help.czech-utf8.php Skipping file
39. Execute Modification ./Themes/default/languages/index.czech-utf8.php Skipping file
40. Execute Modification ./Themes/default/languages/Admin.polish.php Skipping file
41. Execute Modification ./Themes/default/languages/Help.polish.php Skipping file
42. Execute Modification ./Themes/default/languages/index.polish.php Skipping file


Everything else seems to be ok.

so im scared, what do i need to do?

I have the latest Powered by SMF 2.0 RC2

and mod version is this HideTagSpecial236_(2.0RC2_Compatible).zip

jaisi


masterz3d

Hi din, may I translate your Hide Tag Special into Italian? And, when I'm done, should I send you the whole modified package (.tar.gzipped) or just the modified/added files?

ディン1031

Quote from: jaisi on January 20, 2010, 04:01:24 AM
bump please reply
Hmmm i think some modifcation give a confilict, you can try to insert the missing part by yourself... (you can do that on you're own risk.)

Quote from: masterz3d on January 20, 2010, 04:33:25 PM
Hi din, may I translate your Hide Tag Special into Italian? And, when I'm done, should I send you the whole modified package (.tar.gzipped) or just the modified/added files?
No Problem :), i will insert it :D.
Support only via MOD Thread! NO PM Support!
My Forum: ayu][kult Forum
My Mods: My Small Mod Collection
My Parser: DIN1031's ModParser
Current Info: More away the next days, because i've to much work to do :x

masterz3d

#1231
Here it is, I checked the translation, it should be fine.

(DIN1031: Removed the file)

Dr3amstor

I installed this Mod every thing fine, but after setup everything allowed groups and so on, didn't work properly, my self as Admin can't see what I between the tags the even after posting.
I'm using SMF 1.1.11

Any advise?

ディン1031

Quote from: masterz3d on January 21, 2010, 02:48:56 PM
Here it is, I checked the translation, it should be fine.
Thank you... i insert it :).

Quote from: Dr3amstor on February 11, 2010, 10:03:38 AM
I installed this Mod every thing fine, but after setup everything allowed groups and so on, didn't work properly, my self as Admin can't see what I between the tags the even after posting.
I'm using SMF 1.1.11

Any advise?
Depend on your setup... (i know a lot ways which even for the admin is impossible to see hidden content.)

Support only via MOD Thread! NO PM Support!
My Forum: ayu][kult Forum
My Mods: My Small Mod Collection
My Parser: DIN1031's ModParser
Current Info: More away the next days, because i've to much work to do :x

raffomix


ディン1031

Support only via MOD Thread! NO PM Support!
My Forum: ayu][kult Forum
My Mods: My Small Mod Collection
My Parser: DIN1031's ModParser
Current Info: More away the next days, because i've to much work to do :x

minos

please update to 2.0 rc3  its not compatible

ディン1031

Difficult at the moment, but i will see what i can do <<.
Support only via MOD Thread! NO PM Support!
My Forum: ayu][kult Forum
My Mods: My Small Mod Collection
My Parser: DIN1031's ModParser
Current Info: More away the next days, because i've to much work to do :x

ɔɔɔɔɔɔuɥoɾ

Hi, once again thanks for the great mod, its been working perfectly since day 1 :)

I wanted to know, if it would be possible for the reply (to un-hide links) could have a required word(s), when the word(s) is not used the reply will be rejected where topics with hide tags are used. Also a bigger stretch, if possible, once a reply has been validated by the word requirement system, future replies will not need the required word.

If this is too difficult, no worries, just an idea which I and maybe other could fine useful :)

Thanks in Advanced.


SMF 2.0 RC5

   
Webhost to New Webhost file transfer service, PM me - Fast transfers

ディン1031

Support only via MOD Thread! NO PM Support!
My Forum: ayu][kult Forum
My Mods: My Small Mod Collection
My Parser: DIN1031's ModParser
Current Info: More away the next days, because i've to much work to do :x

Advertisement: