Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > FreeTSP
Reply
  #1  
Old 19th December 2016, 08:40
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default [FreeTSP] Class Functions Modified
To make your classes except members ( i wanted a else statement inside the code also ) now glow with some cool css and of course a fresh method so no turd eater from Mcdonalds could accuse me of copy & paste.

Function_config.php
PHP Code:
define ('UC_USER'0);
define ('UC_POWER_USER'1);
define('UC_COM_VIP'2);
define ('UC_VIP'3);
define('UC_UPLOADER', -2);
define('UC_SITE_EDITOR'4);
define('UC_FORUM_MODERATOR'5);
define ('UC_MODERATOR'6);
define ('UC_ADMINISTRATOR'7);
define ('UC_SYSOP'8);
define('UC_TEAM_LEADER'9);
define ('UC_MANAGER'10);
define ('UC_TRACKER_MANAGER'1); ///---Set the ID# to match the member who will have access to the Tracker Manager---/// 


Function_users.php


Remove:
PHP Code:
function get_user_class_name ($class)
{

// code

}

function 
get_user_class_color ($class
{

// code


Replace With:
PHP Code:
function get_user_class_name ($class)
{
    switch (
$class)
    {
        case 
UC_UPLOADER:
            return 
"Member";
        
        case 
UC_USER:
            return 
"Member";

        case 
UC_POWER_USER:
            return 
"Scene Member";

        case 
UC_COM_VIP:
            return 
"Trustee";        
        
        case 
UC_VIP:
            return 
"Site VIP";
            
        case 
UC_SITE_EDITOR:
            return 
"Prite Editor"

        case 
UC_FORUM_MODERATOR:
            return 
"Forum Moderator";    
            
        case 
UC_MODERATOR:
            return 
"Global Moderator";

        case 
UC_ADMINISTRATOR:
            return 
"Administrator";

        case 
UC_SYSOP:
            return 
"Site Operator";

        case 
UC_TEAM_LEADER:
            return 
"Team Leader";        
            
        case 
UC_MANAGER:
            return 
"Web Developer";
    }
    return 
"";
}


function 
get_user_class_color ($class)
{
    switch (
$class)
    {            
        case 
UC_USER:
            return 
"1E90FF";

        case 
UC_POWER_USER:
            return 
"20b2aa";

        case 
UC_COM_VIP:
            return 
"ff7c00";        
        
        case 
UC_VIP:
            return 
"ffff00";
            
        case 
UC_SITE_EDITOR:
            return 
"B000B0"

        case 
UC_FORUM_MODERATOR:
            return 
"339933";    
            
        case 
UC_MODERATOR:
            return 
"00FF00";

        case 
UC_ADMINISTRATOR:
            return 
"ff0f0f";

        case 
UC_SYSOP:
            return 
"e13535";

        case 
UC_TEAM_LEADER:
            return 
"4080B0";        
            
        case 
UC_MANAGER:
            return 
"4EE2EC";            
    }
    return 
"";
}


function 
format_username ($user$icons true)
{
    global 
$CURUSER$image_dir$site_url;

    
$user['id']    = (int) $user['id'];
    
$user['class'] = (int) $user['class'];

    if (
$user['id'] == 0)
    {
        return 
'System';
    }

    elseif (
$user['username'] == '')
    {
        return 
'unknown['.$user['id'].']';
    }
    
    if (
$user['class'] > UC_TEAM_LEADER) :
    
      
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #1d3fca, 0px 0px 6px #1d3fca;font-weight:bold; color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';
    
    elseif (
$user['class'] == UC_TEAM_LEADER):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #1d3fca;font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
      
    elseif (
$user['class'] == UC_SYSOP):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_ADMINISTRATOR):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #F00, 0px 0px 6px #F00;font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_MODERATOR):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #008800, 0px 0px 6px #003e00;font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
    
    elseif (
$user['class'] == UC_FORUM_MODERATOR):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_SITE_EDITOR):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_VIP):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
    
    elseif (
$user['class'] == UC_COM_VIP):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_POWER_USER):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_USER):
     
        
$username '<span style="font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
    
//else :    

       // $username = '<span style="font-weight:bold; color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
    
endif;
    
    
//color: #4EE2EC;text-shadow: 0px 0px 5px #1d3fca, 0px 0px 6px #1d3fca;
    //$username = '<span style="font-weight:bold; color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';
    
    
$str      '<span style="white-space: nowrap;"><a href="'.$site_url.'/userdetails.php?id='.$user['id'].'"target="_blank">'.$username.'</a>';

    if (
$icons != false)
    {
        
$str .= ($user['donor'] == 'yes' '<img src="'.$image_dir.'star.png" width="16" height="16" border="0" alt="Donor" title="Donor" />' '');
        
$str .= ($user['warned'] == 'yes' '<img src="'.$image_dir.'warned.png" width="15" height="16" border="0" alt="Warned" title="Warned" />' '');
        
$str .= ($user['enabled'] == 'no' '<img src="'.$image_dir.'disabled.png" width="16" height="15" border="0" alt="Disabled" title="Disabled" />' '');
    }
    
$str .= "</span>\n";

    return 
$str;

Now Freestyle or Cypher [=
It doesn't matter if you got an army or a wife I'll still fuck them with my eyes closed!
Reply With Quote
  #2  
Old 19th December 2016, 10:57
DND DND is online now
VIP
 
Join Date: Dec 2008
Posts: 1,241
Default
wow.. looks so much like the ones in tbdev>u-232
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
Reply With Quote
  #3  
Old 19th December 2016, 11:44
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default
Fuck your a clown..
Reply With Quote
  #4  
Old 20th December 2016, 08:58
fireknight's Avatar
fireknight fireknight is offline
Administrator
 
Join Date: Aug 2010
Australia
Posts: 173
Default
Are you sure this is right

Function_config.php
PHP Code:
define('UC_UPLOADER', -2); 
Why would you use a negative number to define a class.
If this meant to be, you are going to have lots of issues with all the below statments through out the source
PHP Code:
if (get_user_class() < UC_USER)
{
    
//===== Some Sort Of Warning Goes Here - Or Just - die =====//

Reply With Quote
  #5  
Old 20th December 2016, 09:05
Bigjoos's Avatar
Bigjoos Bigjoos is offline
U-232 Dev
 
Join Date: May 2008
United Kingdom
Posts: 244
Default
He's such a friendly person, telling his colleagues they are clowns eh.

@Fireknight, no worries man, pdq wrote that one.

Last edited by Bigjoos; 20th December 2016 at 18:58.
Reply With Quote
  #6  
Old 20th December 2016, 09:58
fireknight's Avatar
fireknight fireknight is offline
Administrator
 
Join Date: Aug 2010
Australia
Posts: 173
Default
This is the format_username from the freetsp source
PHP Code:
function format_username ($user$icons true)
{
    global 
$CURUSER$image_dir$site_url;

    
$user['id']    = (int) $user['id'];
    
$user['class'] = (int) $user['class'];

    if (
$user['id'] == 0)
    {
        return 
'System';
    }

    elseif (
$user['username'] == '')
    {
        return 
'unknown['.$user['id'].']';
    }

    
$username '<span style="font-weight:bold; color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';
    
$str      '<span style="white-space: nowrap;"><a href="'.$site_url.'/userdetails.php?id='.$user['id'].'"target="_blank">'.$username.'</a>';

    if (
$icons != false)
    {
        
$str .= ($user['donor'] == 'yes' '<img src="'.$image_dir.'star.png" width="16" height="16" border="0" alt="Donor" title="Donor" />' '');
        
$str .= ($user['warned'] == 'yes' '<img src="'.$image_dir.'warned.png" width="15" height="16" border="0" alt="Warned" title="Warned" />' '');
        
$str .= ($user['enabled'] == 'no' '<img src="'.$image_dir.'disabled.png" width="16" height="15" border="0" alt="Disabled" title="Disabled" />' '');
    }
    
$str .= "</span>\n";

    return 
$str;

Krypto added this to the source.
I never knew it came from U232.
So my apology's for that Bigjoos

I will update the version with proper credits to U232.
Do you know the name of the coder so I can add their name to the credit as well.
Reply With Quote
  #7  
Old 23rd December 2016, 23:36
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default
The -2 is just there because I removed UC_UPLOADER but wanted to keep it in code. just change the number to french fries and chilli dip it wouldn't make a difference would it?

I am not being rude I am just saying, I am sorry for coming out as rude as I do, it is just me and if people don't like then i am sorry your mum cuddled you till you were 100yrs old.

I never took credit for someone else work I took credit for this concept only:
PHP Code:
   if ($user['class'] > UC_TEAM_LEADER) :
    
      
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #1d3fca, 0px 0px 6px #1d3fca;font-weight:bold; color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';
    
    elseif (
$user['class'] == UC_TEAM_LEADER):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #1d3fca;font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
      
    elseif (
$user['class'] == UC_SYSOP):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_ADMINISTRATOR):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #F00, 0px 0px 6px #F00;font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_MODERATOR):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #008800, 0px 0px 6px #003e00;font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
    
    elseif (
$user['class'] == UC_FORUM_MODERATOR):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_SITE_EDITOR):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_VIP):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
    
    elseif (
$user['class'] == UC_COM_VIP):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_POWER_USER):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_USER):
     
        
$username '<span style="font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
    
//else :    

       // $username = '<span style="font-weight:bold; color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
    
endif; 
it just makes the usernames glow a little bit and gives people an fresh idea I know a few people that wanted this concept years ago but I didn't have the knowledge of php like I do today, I have learned a lot thanks BigJoos I know I have been an clown and a massive dick in the past maybe one day just one day we could shake hands like proper man, I should have know better and you did teach me which I will always be grateful for man, thanks & sorry might not cut it but never the less I am trying here.

@DND man I am sorry I thought you were having a dig at me, I apologize. Your right it is like TBDev/U232/etc most code is recycled no offense intended to these engines.

Maybe one day Ill stop shooting before I go on a rapid fire, one day I never said it would be today

Peace,
Enjoy & Again Sorry!
Reply With Quote
  #8  
Old 24th December 2016, 15:37
TLO TLO is offline
Senior Member
 
Join Date: May 2009
United Kingdom
Posts: 35
Default
Quote:
Originally Posted by BamBam0077 View Post
The -2 is just there because I removed UC_UPLOADER but wanted to keep it in code. just change the number to french fries and chilli dip it wouldn't make a difference would it?

I am not being rude I am just saying, I am sorry for coming out as rude as I do, it is just me and if people don't like then i am sorry your mum cuddled you till you were 100yrs old.

I never took credit for someone else work I took credit for this concept only:
PHP Code:
   if ($user['class'] > UC_TEAM_LEADER) :
    
      
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #1d3fca, 0px 0px 6px #1d3fca;font-weight:bold; color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';
    
    elseif (
$user['class'] == UC_TEAM_LEADER):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #1d3fca;font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
      
    elseif (
$user['class'] == UC_SYSOP):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_ADMINISTRATOR):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #F00, 0px 0px 6px #F00;font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_MODERATOR):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #008800, 0px 0px 6px #003e00;font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
    
    elseif (
$user['class'] == UC_FORUM_MODERATOR):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_SITE_EDITOR):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_VIP):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
    
    elseif (
$user['class'] == UC_COM_VIP):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_POWER_USER):
     
        
$username '<span style="background: repeat-x scroll 0% 0% transparent;text-shadow: 0px 0px 5px #'.get_user_class_color($user['class']).', 0px 0px 6px #'.get_user_class_color($user['class']).';font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    

    elseif (
$user['class'] == UC_USER):
     
        
$username '<span style="font-weight:bold;color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
    
//else :    

       // $username = '<span style="font-weight:bold; color:#'.get_user_class_color($user['class']).';">'.htmlspecialchars($user['username']).'&nbsp;</span>';    
    
endif; 
it just makes the usernames glow a little bit and gives people an fresh idea I know a few people that wanted this concept years ago but I didn't have the knowledge of php like I do today, I have learned a lot thanks BigJoos I know I have been an clown and a massive dick in the past maybe one day just one day we could shake hands like proper man, I should have know better and you did teach me which I will always be grateful for man, thanks & sorry might not cut it but never the less I am trying here.

@DND man I am sorry I thought you were having a dig at me, I apologize. Your right it is like TBDev/U232/etc most code is recycled no offense intended to these engines.

Maybe one day Ill stop shooting before I go on a rapid fire, one day I never said it would be today

Peace,
Enjoy & Again Sorry!
Maybe one day you'll be more open to paying the right people the right respect, instead of using excuses why you're so rude and constantly stealing other peoples hard work and calling it your own. We all lift code from everywhere but don't claim its ours. I don't say much here but I have seen your work here and other places and it never changes!
Reply With Quote
  #9  
Old 27th December 2016, 12:53
Bigjoos's Avatar
Bigjoos Bigjoos is offline
U-232 Dev
 
Join Date: May 2008
United Kingdom
Posts: 244
Default
Quote:
Originally Posted by BamBam0077 View Post
Tt just makes the usernames glow a little bit and gives people an fresh idea I know a few people that wanted this concept years ago but I didn't have the knowledge of php like I do today, I have learned a lot thanks BigJoos I know I have been an clown and a massive dick in the past maybe one day just one day we could shake hands like proper man, I should have know better and you did teach me which I will always be grateful for man, thanks & sorry might not cut it but never the less I am trying here.

@DND man I am sorry I thought you were having a dig at me, I apologize. Your right it is like TBDev/U232/etc most code is recycled no offense intended to these engines.

Maybe one day Ill stop shooting before I go on a rapid fire, one day I never said it would be today

Peace,
Enjoy & Again Sorry!

See you can be a decent lad, and fair play for posting that. U-232 door is always open to all and anyone wanting to learn a bit, we all learn bits of each other after all. Good job posting some mods and that's sincere. Come onto u-232.servebeer.com next time your about =]
Reply With Quote
Reply

Tags
class , freetsp , functions , modified

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 22:28. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.