Previous Thread
Next Thread
Print Thread
Rate Thread
Joined: Aug 2000
Posts: 25
Member
Member
Offline
Joined: Aug 2000
Posts: 25
Although its been around for a bit now, I'm just posting this here because it is a very useful hack. I've also modded it for my own use which I will post subsequently.

This hack allows you to assign custom user titles based upon user and/or posts. The hack was written by Jimbo and Skalos added the CP functionality. Here it is:
http://www.jimbosworld.org/ubbtitlehack.html


------------------
Billy Bandit
Bandit Boys

This message has been edited by Billy Bandit on September 27, 2000 at 03:37 PM

Sponsored Links
Joined: Aug 2000
Posts: 25
Member
Member
Offline
Joined: Aug 2000
Posts: 25
Jaxel made a version that combines this with the Stars hack. You can assign a certain number of stars to a user based on who the user is or how many posts they have. His version can be found here:
http://temp.upnetwork.com/ubb/titleparse.txt

The control panel for his version should be used like this:
http://temp.upnetwork.com/ubb/titleparse.gif



------------------
Billy Bandit
Bandit Boys

Joined: Aug 2000
Posts: 25
Member
Member
Offline
Joined: Aug 2000
Posts: 25
I had a different need. I wanted to specify custom titles and I wanted special icons depending upon the number of posts. But I wanted it so that if a user had 45 posts he would get 4 'yellow' stars that were worth 10 posts each.. but if he had 65 posts he would get 1 'blue' star worth 50 and 1 'yellow' star worth 10. Am I making sense? Anyways I modified the same script a little bit (only the ParseUserTitles sub). If you want to use this hack just replace the ParseUserTitles sub from the original hack or Jaxel's hack with this sub:
Code
code:

You can specify the images for each post level in the control panel. Just make sure you list the post levels in DESCENDING order. Here is a snapshot of the how the control panel should be used with this alteration.
http://www.banditboys.com/titlerank.gif


------------------
Billy Bandit
Bandit Boys

Joined: Aug 2000
Posts: 1,083
Kahuna
Kahuna
Offline
Joined: Aug 2000
Posts: 1,083
Ok I did the Star and User Titles hack that you listed:

Jaxel made a version that combines this with the Stars hack. You can assign a certain number of stars to a user based on who the user is or how many posts they have. His version can be found here: http://temp.upnetwork.com/ubb/titleparse.txt

So, I copied everything from top to the bottom of the code I listed below, but when I try to click on User Titles in the Control Panel it gives me the following error:

Error including the required files:

Be sure you uploaded UltBB.setup, Styles.file, mods.file and forums.cgi in ASCII/Text mode to your CGI directory. [This is a manual setting on your FTP software]

Make sure spelling and case are correct: UltBB.setup not ultbb.setup.

Here is the message returned from UBB:

syntax error at ubb_library.pl line 205, near "if"

I know I have the files listed so there must be a problem with my coping and pasting, can anyone help? Oh by the way my board is 5.46.

---------------------------------------------
The Code
---------------------------------------------

#########################
Hacking in ubb_library.pl
#########################

Find code:
----------------------------------------------
$Version = "5.45c";
$VersionNumber = "5R4R5RC";
$maxmemfields = 14; # = 15 max fields for member data
----------------------------------------------
* May be slightly different in your version


Add BELOW code above:
----------------------------------------------
########################################################
# Smart title parsing routine by [email protected] #
########################################################

sub ParseUserTitles{
# Check for Post Count titles
my @posttitles = &OpenFile("$MembersPath/title-list2.file");

foreach $thisline(@posttitles) {
my @postnumtitles = split(/|!!|/, $thisline);
chomp($postnumtitles[2]);

if ($thisprofile[7] > $postnumtitles[0]) {
$CustomStatus = "$postnumtitles[1]";
$NumStars = "$postnumtitles[2]"; &ParseStars;
$ThisStatus = "$CustomStars
$CustomStatus";
}
}

# Check for Admin / Moderator Titles
if ($thisprofile[8] eq "Administrator") {
$CustomStatus = "$AdminTitle";
$NumStars = "8"; &ParseStars;
$ThisStatus = "$CustomStars
$CustomStatus";
}
elsif ($thisprofile[8] eq "Moderator") {
$CustomStatus = "$ModeratorTitle";
$NumStars = "7"; &ParseStars;
$ThisStatus = "$CustomStars
$CustomStatus";
}


# Check for Username Specific Titles
my @spectitles = &OpenFile("$MembersPath/title-list.file");

foreach $thisline(@spectitles) {
my @titles = split(/|!!|/, $thisline);
chomp($titles[2]);

if ($thisprofile[0] eq "$titles[0]") {
$CustomStatus = "$titles[1]";
$NumStars = "$titles[2]"; &ParseStars;
$ThisStatus = "$CustomStars
$CustomStatus";
}
}
} # end smart title parsing routine

sub ParseStars{
$CustomStars = "";
for($i = 1; $i <= $NumStars; $i++) {
$CustomStars .= qq( );
}
} # end smart star parsing routine

#################################################
# Control Panel for Jimbo's Smart Title parsing #
# Written by Skalos #
#################################################

sub UserTitles {
$PageTitle = "U S E R T I T L E S";
&HEADERHTML1;
print<

You must be an administrator
to change custom user titles.





ForumLoginHTML

&IDTable;

print<










ENDIT
}

sub ViewUserTitles {
&VerifyAdminCP($UserName, $Password);
if ($Proceed eq "true") {
#get current user titles
my @spectitles = &OpenFile("$MembersPath/title-list.file");
$titles = join(/n/, @spectitles);
#get the current titles by post
my @spectitles = &OpenFile("$MembersPath/title-list2.file");
$posttitles = join(/n/, @spectitles);
$PageTitle = "U S E R T I T L E S";
&HEADER2HTML;

####################################
# For best visibility on screen,
# you should set $numColumns to:
#
# 55 if you use 640x480 resolution
# 70 if you use 800x600 resolution
# 105 if you use 1024x768 resolution
####################################
$numColumns=70;
####################################

print<










Set user titles below
by specifying them in the form of: |!!||!!|<stars>, one per line</B></FONT><br></TD><br></tr><br><TR bgcolor="#f7f7f7"><br><td valign=top colspan=2><br><FONT SIZE="2" FACE="Verdana, Arial"><B>User Titles:</B></FONT><br></td></tr><br><tr><td valign=top colspan=2><br><TEXTAREA NAME="titles" COLS="$numColumns" ROWS="10" WRAP="OFF">$titles</TEXTAREA><br></td></tr><br>TITLES<br><br>print<<BOTTOM;<br><TR bgcolor="#B0BB9D"><br><TD colspan=2 align=center><FONT SIZE="1" FACE="Verdana, Arial"><br><B>Set titles by rank below by specifying them in the form<br>of: <posts>|!!|<title>|!!|<stars>, one per line</B></FONT><br></TD><br><TR bgcolor="#f7f7f7"><br><td valign=top colspan=2><br><FONT SIZE="2" FACE="Verdana, Arial"><B>Titles By Post:</B></FONT><br></td></tr><br><tr><td valign=top colspan=2><br><TEXTAREA NAME="posttitles" COLS="$numColumns" ROWS="10" WRAP="OFF">$posttitles</TEXTAREA><br></td></tr><br>BOTTOM<br><br>print<<BOTTOM;<br></TR><br><TR bgcolor="#C7C6BA"><br><TD><FONT Size="2" FACE="Verdana, Arial"><br>UserName:</font></TD><TD><INPUT TYPE="TEXT" NAME="UserNameCheck" SIZE=25 <br>MAXLENGTH=25></td></tr><br><TR bgcolor="#C7C6BA"><br><TD><FONT Size="2" FACE="Verdana, Arial">Password</font></TD><TD><INPUT <br>TYPE="PASSWORD" NAME="PasswordCheck" SIZE=13 MAXLENGTH=13></TD></tr><br></table><br></td></tr></table><br><br><br><br><INPUT TYPE="HIDDEN" NAME="action" VALUE="submitusertitles"><br><br><INPUT TYPE="SUBMIT" NAME="Submit" VALUE="Submit User Titles"><br></FORM><br><br><br><br><br></CENTER><br></body></html><br>BOTTOM<br><br>} <br>} #end ViewUserTitles<br><br>sub SubmitUserTitles {<br>&VerifyAdminCP($UserNameCheck, $PasswordCheck);<br>if ($Proceed eq "true") {<br>$Titles = $in{'titles'};<br>chomp($Titles);<br>$PostTitles = $in{'posttitles'};<br>chomp($PostTitles);<br><br>&Lock("lock.file");<br>open(TITLES, ">$MembersPath/title-list.file");<br>print TITLES"$Titles";<br>close(TITLES);<br>open(TITLES, ">$MembersPath/title-list2.file");<br>print TITLES"$PostTitles";<br>close(TITLES);<br>&Unlock("lock.file");<br>chmod (0777, "$MembersPath/title-list.file");<br>chmod (0777, "$MembersPath/title-list2.file");<br><br>&EndUpdate("U S E R T I T L E S <br>U P D A T E D", "<CENTER>Your user titles list has been successully updated!<br>Don't forget<br>to update your threads so the new titles will show up on the current posts!</CENTER>");<br>}<br>} # end SubmitUserTitles<br><br>########################################################<br># End of Smart Title routines #<br>########################################################<br><span style="font-style: italic">Text</span><br><br>------------------<br> <a href="http://www.zeldaglitches.com" target="_blank">http://www.zeldaglitches.com</a></div> <br> </div> <div class="signature mblthin"> <hr class="signature"> .::First place winner in the <a href="http://www.ubbdev.com/db/cgi/ultimatebb.cgi?ubb=get_topic&f=5&t=000007" target="_blank">June 2001 Member Spotlight</a> ::.<br>.::<a href="https://www.zeldaxtreme.com" target="_blank">Zelda Xtreme</a>::. </div> </td></tr> </table> </td> </tr> </table> </td></tr> </table> <div id="post_popup_38172" style="display:none;"> <table class="popup_menu"> <tr><td class="popup_menu_content"><a href="javascript:void(0);" data-clipboard-text="https://ubbdev.com/forums/ubbthreads.php/topics/38172/re-custom-user-titles-by-jimbo-skalos.html#Post38172" class="clipbtn" rel="nofollow"> <i class="far fa-copy fa-fw menu-item" aria-hidden="true"></i> Copy Link to Clipboard</a> </td></tr> <tr><td class="popup_menu_content"><a href="https://www.facebook.com/sharer/sharer.php?u=https://ubbdev.com/forums/ubbthreads.php/topics/38172%23Post38172.html" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=350,width=600');return false;" target="_blank"><i class="fab fa-facebook-f fa-fw menu-item" aria-hidden="true"></i> Share Post on Facebook</a></td></tr> <tr><td class="popup_menu_content"><a href="https://reddit.com/submit?url=https://ubbdev.com/forums/ubbthreads.php/topics/38172%23Post38172.html&title=Re%3A%20Custom%20User%20Titles%20by%20Jimbo%2FSkalos" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=550,width=600');return false;" target="_blank"><i class="fab fa-reddit-alien fa-fw menu-item" aria-hidden="true"></i> Share Post on Reddit</a></td></tr> </table> </div> <script>registerPopup("post_popup_38172");</script> <a id="Post38173"></a> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td> <table class="fw "> <tr> <td class="subjecttable" colspan="2"> <div class="fblock" style="align-items:center;"> <img src="https://ubbdev.com/forums/images/icons/default/book.gif" class="rmar" alt="" style="max-height:12px;vertical-align:text-top;"><div class="truncate bold" title="Re: Custom User Titles by Jimbo/Skalos"><a href="https://ubbdev.com/forums/ubbthreads.php/topics/38173/re-custom-user-titles-by-jimbo-skalos.html#Post38173" class="nd" rel="nofollow">Re: Custom User Titles by Jimbo/Skalos</a></div> <div class="iblock"> <span class="op5 nw small"> </span> <span class="small lmar nd fr"> #<a href="https://ubbdev.com/forums/ubbthreads.php/topics/38173/re-custom-user-titles-by-jimbo-skalos.html#Post38173" id="number38173" rel="nofollow">38173</a></span> <span class="cp fr nd op5 small"> <i class="fas fa-share-alt titlebar-item" id="menu_control_p38173" onclick="showHideMenu('menu_control_p38173','post_popup_38173')" title="Share Post"></i> </span> <span class="small lmar nd fr"> <span class="date">09/30/2000</span> <span class="time">11:57 AM</span> </span> </div></div> </td> </tr> <tr> <td class="author-content alvt mblwide" colspan="2"> <div class="alvt fr"> <div class="small author-registered">Joined: <span class="date">Jul 2000</span></div> <div class="small author-totalposts">Posts: 1</div><div class="small author-location fwrap"><a href="https://maps.google.com/maps?q=Somewhere%2C+USA" rel="nofollow" target="_blank">Somewhere, USA</a></div></div> <div class="author-picture"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/899/ga-cloud-strife.html"><svg class="fl avatar-none rmar dblock" style="height:60px;line-height:60px;width:60px;" title="GA-Cloud Strife's identicon" data-jdenticon-value="fadb0189e0e077840000244dd7067c05"></svg></a> </div> <div class="bold author-name fwrap dblock"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/899/ga-cloud-strife.html"><span class='username'>GA-Cloud Strife</span></a> <span class="lmar rmar nw"> <img src="https://ubbdev.com/forums/images/moods/default/offline.gif" alt="Offline" title="Offline"> </span> </div> <div class="small author-title">Junior Member</div> </td> </tr> <tr> <td class="author-content alvt mblthin" rowspan="2"> <div class="bold author-name fwrap"><span id="menu_control_38173"><a href="javascript:void(0);" onclick="showHideMenu('menu_control_38173','profile_popup_38173');"><span class='username'>GA-Cloud Strife</span></a></span> </div> <div class="small author-title">Junior Member</div> <div class="author-picture acvt" style="max-height:90px;max-width:90px;margin-bottom:6px;margin-top:6px; height:100%;width:100%; flex:0 0 auto;min-width:0;position:relative;"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/899/ga-cloud-strife.html"><svg class="avatar-none" style="height:90px;width:90px;" title="GA-Cloud Strife's identicon" data-jdenticon-value="fadb0189e0e077840000244dd7067c05"></svg></a> <img src="https://ubbdev.com/forums/images/moods/default/offline.gif" class="author-mood" alt="Offline" title="Offline"> </div> <div class="small author-registered">Joined: <span class="date">Jul 2000</span></div> <div class="small author-totalposts">Posts: 1</div><div class="small author-location fwrap"><a href="https://maps.google.com/maps?q=Somewhere%2C+USA" rel="nofollow" target="_blank">Somewhere, USA</a></div></td> <td class="post-content alvt"> <div class="post_inner"> <div id="body4">Dang, I'm using 5.45c, and I can't get it to work. When I try to run it from the CP I get<br><br>"Error including the required files:<br><br>Be sure you uploaded UltBB.setup, Styles.file, mods.file and forums.cgi in ASCII/Text mode to your CGI directory. [This is a manual setting on your FTP software]<br><br>Make sure spelling and case are correct: UltBB.setup not ultbb.setup.<br><br>Here is the message returned from UBB:<br><br>(Maybe you didn't strip carriage returns after a network transfer?)"<br><br>And when I run Ultimate.cgi I get a 500 ISE every time. Can someone help me get it to work with my version? I'm assuming that's why it doesn't work. I followed the instructions completely.<br>My board: <a href="http://www.ga.f2s.com/cgi-bin/Ultimate.cgi" target="_blank">http:/<wbr>/<wbr>www.ga.f2s.com/<wbr>cgi-bin/<wbr>Ultimate.cgi</a> <br><br>------------------<br>Check out my site: <a href="http://www.gamersarmy.com" target="_blank">http://www.gamersarmy.com</a> <br><br><FONT COLOR="#6699cc" SIZE="1" FACE="Verdana, Arial">This message has been edited by GA-Cloud Strife on September 30, 2000 at 11:58 AM</font></div> <br> </div> </td></tr> </table> </td> </tr> </table> </td></tr> </table> <div id="post_popup_38173" style="display:none;"> <table class="popup_menu"> <tr><td class="popup_menu_content"><a href="javascript:void(0);" data-clipboard-text="https://ubbdev.com/forums/ubbthreads.php/topics/38173/re-custom-user-titles-by-jimbo-skalos.html#Post38173" class="clipbtn" rel="nofollow"> <i class="far fa-copy fa-fw menu-item" aria-hidden="true"></i> Copy Link to Clipboard</a> </td></tr> <tr><td class="popup_menu_content"><a href="https://www.facebook.com/sharer/sharer.php?u=https://ubbdev.com/forums/ubbthreads.php/topics/38173%23Post38173.html" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=350,width=600');return false;" target="_blank"><i class="fab fa-facebook-f fa-fw menu-item" aria-hidden="true"></i> Share Post on Facebook</a></td></tr> <tr><td class="popup_menu_content"><a href="https://reddit.com/submit?url=https://ubbdev.com/forums/ubbthreads.php/topics/38173%23Post38173.html&title=Re%3A%20Custom%20User%20Titles%20by%20Jimbo%2FSkalos" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=550,width=600');return false;" target="_blank"><i class="fab fa-reddit-alien fa-fw menu-item" aria-hidden="true"></i> Share Post on Reddit</a></td></tr> </table> </div> <script>registerPopup("post_popup_38173");</script> <div id="island1"> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td class="tdheader"> Sponsored Links </td> </tr> <tr> <td class="alt-1"> <!-- UBBDev - Responsive --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5168900358893374" data-ad-slot="3255258746" data-ad-format="auto"></ins> <script>(adsbygoogle = window.adsbygoogle || []).push({});</script> </td> </tr> </table> </td></tr> </table> </div> <a id="Post38174"></a> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td> <table class="fw "> <tr> <td class="subjecttable" colspan="2"> <div class="fblock" style="align-items:center;"> <img src="https://ubbdev.com/forums/images/icons/default/link.gif" class="rmar" alt="" style="max-height:12px;vertical-align:text-top;"><div class="truncate bold" title="Re: Custom User Titles by Jimbo/Skalos"><a href="https://ubbdev.com/forums/ubbthreads.php/topics/38174/re-custom-user-titles-by-jimbo-skalos.html#Post38174" class="nd" rel="nofollow">Re: Custom User Titles by Jimbo/Skalos</a></div> <div class="iblock"> <span class="op5 nw small"> </span> <span class="small lmar nd fr"> #<a href="https://ubbdev.com/forums/ubbthreads.php/topics/38174/re-custom-user-titles-by-jimbo-skalos.html#Post38174" id="number38174" rel="nofollow">38174</a></span> <span class="cp fr nd op5 small"> <i class="fas fa-share-alt titlebar-item" id="menu_control_p38174" onclick="showHideMenu('menu_control_p38174','post_popup_38174')" title="Share Post"></i> </span> <span class="small lmar nd fr"> <span class="date">09/30/2000</span> <span class="time">2:22 PM</span> </span> </div></div> </td> </tr> <tr> <td class="author-content alvt mblwide" colspan="2"> <div class="alvt fr"> <div class="small author-registered">Joined: <span class="date">Jan 2000</span></div> <div class="small author-totalposts">Posts: 12</div><div class="small author-location fwrap"><a href="https://maps.google.com/maps?q=Nebraska" rel="nofollow" target="_blank">Nebraska</a></div></div> <div class="author-picture"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/67/ultimatesystem.html"><svg class="fl avatar-none rmar dblock" style="height:60px;line-height:60px;width:60px;" title="UltimateSystem's identicon" data-jdenticon-value="a089c21ea543b312a9f1d86ae871f4b8"></svg></a> </div> <div class="bold author-name fwrap dblock"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/67/ultimatesystem.html"><span class='username'>UltimateSystem</span></a> <span class="lmar rmar nw"> <img src="https://ubbdev.com/forums/images/moods/default/offline.gif" alt="Offline" title="Offline"> </span> </div> <div class="small author-title">Member</div> </td> </tr> <tr> <td class="author-content alvt mblthin" rowspan="2"> <div class="bold author-name fwrap"><span id="menu_control_38174"><a href="javascript:void(0);" onclick="showHideMenu('menu_control_38174','profile_popup_38174');"><span class='username'>UltimateSystem</span></a></span> </div> <div class="small author-title">Member</div> <div class="author-picture acvt" style="max-height:90px;max-width:90px;margin-bottom:6px;margin-top:6px; height:100%;width:100%; flex:0 0 auto;min-width:0;position:relative;"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/67/ultimatesystem.html"><svg class="avatar-none" style="height:90px;width:90px;" title="UltimateSystem's identicon" data-jdenticon-value="a089c21ea543b312a9f1d86ae871f4b8"></svg></a> <img src="https://ubbdev.com/forums/images/moods/default/offline.gif" class="author-mood" alt="Offline" title="Offline"> </div> <div class="small author-registered">Joined: <span class="date">Jan 2000</span></div> <div class="small author-totalposts">Posts: 12</div><div class="small author-location fwrap"><a href="https://maps.google.com/maps?q=Nebraska" rel="nofollow" target="_blank">Nebraska</a></div></td> <td class="post-content alvt"> <div class="post_inner"> <div id="body5">The part I add into ubb_library2.pl doesn't let me post. I don't get what is wrong. When I delete that part added, it will let me post.</div> <br> </div> </td></tr> </table> </td> </tr> </table> </td></tr> </table> <div id="post_popup_38174" style="display:none;"> <table class="popup_menu"> <tr><td class="popup_menu_content"><a href="javascript:void(0);" data-clipboard-text="https://ubbdev.com/forums/ubbthreads.php/topics/38174/re-custom-user-titles-by-jimbo-skalos.html#Post38174" class="clipbtn" rel="nofollow"> <i class="far fa-copy fa-fw menu-item" aria-hidden="true"></i> Copy Link to Clipboard</a> </td></tr> <tr><td class="popup_menu_content"><a href="https://www.facebook.com/sharer/sharer.php?u=https://ubbdev.com/forums/ubbthreads.php/topics/38174%23Post38174.html" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=350,width=600');return false;" target="_blank"><i class="fab fa-facebook-f fa-fw menu-item" aria-hidden="true"></i> Share Post on Facebook</a></td></tr> <tr><td class="popup_menu_content"><a href="https://reddit.com/submit?url=https://ubbdev.com/forums/ubbthreads.php/topics/38174%23Post38174.html&title=Re%3A%20Custom%20User%20Titles%20by%20Jimbo%2FSkalos" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=550,width=600');return false;" target="_blank"><i class="fab fa-reddit-alien fa-fw menu-item" aria-hidden="true"></i> Share Post on Reddit</a></td></tr> </table> </div> <script>registerPopup("post_popup_38174");</script> <a id="Post38175"></a> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td> <table class="fw "> <tr> <td class="subjecttable" colspan="2"> <div class="fblock" style="align-items:center;"> <img src="https://ubbdev.com/forums/images/icons/default/book.gif" class="rmar" alt="" style="max-height:12px;vertical-align:text-top;"><div class="truncate bold" title="Re: Custom User Titles by Jimbo/Skalos"><a href="https://ubbdev.com/forums/ubbthreads.php/topics/38175/re-custom-user-titles-by-jimbo-skalos.html#Post38175" class="nd" rel="nofollow">Re: Custom User Titles by Jimbo/Skalos</a></div> <div class="iblock"> <span class="op5 nw small"> </span> <span class="small lmar nd fr"> #<a href="https://ubbdev.com/forums/ubbthreads.php/topics/38175/re-custom-user-titles-by-jimbo-skalos.html#Post38175" id="number38175" rel="nofollow">38175</a></span> <span class="cp fr nd op5 small"> <i class="fas fa-share-alt titlebar-item" id="menu_control_p38175" onclick="showHideMenu('menu_control_p38175','post_popup_38175')" title="Share Post"></i> </span> <span class="small lmar nd fr"> <span class="date">11/06/2000</span> <span class="time">11:32 PM</span> </span> </div></div> </td> </tr> <tr> <td class="author-content alvt mblwide" colspan="2"> <div class="alvt fr"> <div class="small author-registered">Joined: <span class="date">Sep 2000</span></div> <div class="small author-totalposts">Posts: 58</div><div class="small author-location fwrap"><a href="https://maps.google.com/maps?q=New+York+State" rel="nofollow" target="_blank">New York State</a></div></div> <div class="author-picture"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/1294/subzero.html"><svg class="fl avatar-none rmar dblock" style="height:60px;line-height:60px;width:60px;" title="Subzero's identicon" data-jdenticon-value="cef4c38270db4795b6b8b6f915106f3f"></svg></a> </div> <div class="bold author-name fwrap dblock"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/1294/subzero.html"><span class='username'>Subzero</span></a> <span class="lmar rmar nw"> <img src="https://ubbdev.com/forums/images/moods/default/offline.gif" alt="Offline" title="Offline"> </span> </div> <div class="small author-title">Member</div> </td> </tr> <tr> <td class="author-content alvt mblthin" rowspan="2"> <div class="bold author-name fwrap"><span id="menu_control_38175"><a href="javascript:void(0);" onclick="showHideMenu('menu_control_38175','profile_popup_38175');"><span class='username'>Subzero</span></a></span> </div> <div class="small author-title">Member</div> <div class="author-picture acvt" style="max-height:90px;max-width:90px;margin-bottom:6px;margin-top:6px; height:100%;width:100%; flex:0 0 auto;min-width:0;position:relative;"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/1294/subzero.html"><svg class="avatar-none" style="height:90px;width:90px;" title="Subzero's identicon" data-jdenticon-value="cef4c38270db4795b6b8b6f915106f3f"></svg></a> <img src="https://ubbdev.com/forums/images/moods/default/offline.gif" class="author-mood" alt="Offline" title="Offline"> </div> <div class="small author-registered">Joined: <span class="date">Sep 2000</span></div> <div class="small author-totalposts">Posts: 58</div><div class="small author-location fwrap"><a href="https://maps.google.com/maps?q=New+York+State" rel="nofollow" target="_blank">New York State</a></div></td> <td class="post-content alvt"> <div class="post_inner"> <div id="body6">This is all i wish to do, I don't know if the way you have it now covers that. I just want to be able to give a person a custom title and Personal icon as i pick. Does this do that?<br><br><FONT COLOR="#6699cc" SIZE="1" FACE="Verdana, Arial">This message has been edited by Subzero on November 06, 2000 at 10:37 PM</font></div> <br> </div> <div class="signature mblthin"> <hr class="signature"> Love life, feel life,,be life. </div> </td></tr> </table> </td> </tr> </table> </td></tr> </table> <div id="post_popup_38175" style="display:none;"> <table class="popup_menu"> <tr><td class="popup_menu_content"><a href="javascript:void(0);" data-clipboard-text="https://ubbdev.com/forums/ubbthreads.php/topics/38175/re-custom-user-titles-by-jimbo-skalos.html#Post38175" class="clipbtn" rel="nofollow"> <i class="far fa-copy fa-fw menu-item" aria-hidden="true"></i> Copy Link to Clipboard</a> </td></tr> <tr><td class="popup_menu_content"><a href="https://www.facebook.com/sharer/sharer.php?u=https://ubbdev.com/forums/ubbthreads.php/topics/38175%23Post38175.html" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=350,width=600');return false;" target="_blank"><i class="fab fa-facebook-f fa-fw menu-item" aria-hidden="true"></i> Share Post on Facebook</a></td></tr> <tr><td class="popup_menu_content"><a href="https://reddit.com/submit?url=https://ubbdev.com/forums/ubbthreads.php/topics/38175%23Post38175.html&title=Re%3A%20Custom%20User%20Titles%20by%20Jimbo%2FSkalos" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=550,width=600');return false;" target="_blank"><i class="fab fa-reddit-alien fa-fw menu-item" aria-hidden="true"></i> Share Post on Reddit</a></td></tr> </table> </div> <script>registerPopup("post_popup_38175");</script> <a id="Post38176"></a> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td> <table class="fw "> <tr> <td class="subjecttable" colspan="2"> <div class="fblock" style="align-items:center;"> <img src="https://ubbdev.com/forums/images/icons/default/book.gif" class="rmar" alt="" style="max-height:12px;vertical-align:text-top;"><div class="truncate bold" title="Re: Custom User Titles by Jimbo/Skalos"><a href="https://ubbdev.com/forums/ubbthreads.php/topics/38176/re-custom-user-titles-by-jimbo-skalos.html#Post38176" class="nd" rel="nofollow">Re: Custom User Titles by Jimbo/Skalos</a></div> <div class="iblock"> <span class="op5 nw small"> </span> <span class="small lmar nd fr"> #<a href="https://ubbdev.com/forums/ubbthreads.php/topics/38176/re-custom-user-titles-by-jimbo-skalos.html#Post38176" id="number38176" rel="nofollow">38176</a></span> <span class="cp fr nd op5 small"> <i class="fas fa-share-alt titlebar-item" id="menu_control_p38176" onclick="showHideMenu('menu_control_p38176','post_popup_38176')" title="Share Post"></i> </span> <span class="small lmar nd fr"> <span class="date">11/06/2000</span> <span class="time">11:58 PM</span> </span> </div></div> </td> </tr> <tr> <td class="author-content alvt mblwide" colspan="2"> <div class="alvt fr"> <div class="small author-registered">Joined: <span class="date">Nov 2000</span></div> <div class="small author-totalposts">Posts: 5</div><div class="small author-location fwrap"><a href="https://maps.google.com/maps?q=okc" rel="nofollow" target="_blank">okc</a></div></div> <div class="author-picture"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/1679/bassman.html"><svg class="fl avatar-none rmar dblock" style="height:60px;line-height:60px;width:60px;" title="Bassman's identicon" data-jdenticon-value="92983b69257ebee7c2ea9dd374093746"></svg></a> </div> <div class="bold author-name fwrap dblock"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/1679/bassman.html"><span class='username'>Bassman</span></a> <span class="lmar rmar nw"> <img src="https://ubbdev.com/forums/images/moods/default/offline.gif" alt="Offline" title="Offline"> </span> </div> <div class="small author-title">Junior Member</div> </td> </tr> <tr> <td class="author-content alvt mblthin" rowspan="2"> <div class="bold author-name fwrap"><span id="menu_control_38176"><a href="javascript:void(0);" onclick="showHideMenu('menu_control_38176','profile_popup_38176');"><span class='username'>Bassman</span></a></span> </div> <div class="small author-title">Junior Member</div> <div class="author-picture acvt" style="max-height:90px;max-width:90px;margin-bottom:6px;margin-top:6px; height:100%;width:100%; flex:0 0 auto;min-width:0;position:relative;"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/1679/bassman.html"><svg class="avatar-none" style="height:90px;width:90px;" title="Bassman's identicon" data-jdenticon-value="92983b69257ebee7c2ea9dd374093746"></svg></a> <img src="https://ubbdev.com/forums/images/moods/default/offline.gif" class="author-mood" alt="Offline" title="Offline"> </div> <div class="small author-registered">Joined: <span class="date">Nov 2000</span></div> <div class="small author-totalposts">Posts: 5</div><div class="small author-location fwrap"><a href="https://maps.google.com/maps?q=okc" rel="nofollow" target="_blank">okc</a></div></td> <td class="post-content alvt"> <div class="post_inner"> <div id="body7">i have 5.45c. i tried jimbos user titles thing and when i assign a custom title to someone it dosent appear under there name its just blank. So im not recomending his hack unless i did something wrong.</div> <br> </div> </td></tr> </table> </td> </tr> </table> </td></tr> </table> <div id="post_popup_38176" style="display:none;"> <table class="popup_menu"> <tr><td class="popup_menu_content"><a href="javascript:void(0);" data-clipboard-text="https://ubbdev.com/forums/ubbthreads.php/topics/38176/re-custom-user-titles-by-jimbo-skalos.html#Post38176" class="clipbtn" rel="nofollow"> <i class="far fa-copy fa-fw menu-item" aria-hidden="true"></i> Copy Link to Clipboard</a> </td></tr> <tr><td class="popup_menu_content"><a href="https://www.facebook.com/sharer/sharer.php?u=https://ubbdev.com/forums/ubbthreads.php/topics/38176%23Post38176.html" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=350,width=600');return false;" target="_blank"><i class="fab fa-facebook-f fa-fw menu-item" aria-hidden="true"></i> Share Post on Facebook</a></td></tr> <tr><td class="popup_menu_content"><a href="https://reddit.com/submit?url=https://ubbdev.com/forums/ubbthreads.php/topics/38176%23Post38176.html&title=Re%3A%20Custom%20User%20Titles%20by%20Jimbo%2FSkalos" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=550,width=600');return false;" target="_blank"><i class="fab fa-reddit-alien fa-fw menu-item" aria-hidden="true"></i> Share Post on Reddit</a></td></tr> </table> </div> <script>registerPopup("post_popup_38176");</script> <a id="Post38177"></a> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td> <table class="fw "> <tr> <td class="subjecttable" colspan="2"> <div class="fblock" style="align-items:center;"> <img src="https://ubbdev.com/forums/images/icons/default/link.gif" class="rmar" alt="" style="max-height:12px;vertical-align:text-top;"><div class="truncate bold" title="Re: Custom User Titles by Jimbo/Skalos"><a href="https://ubbdev.com/forums/ubbthreads.php/topics/38177/re-custom-user-titles-by-jimbo-skalos.html#Post38177" class="nd" rel="nofollow">Re: Custom User Titles by Jimbo/Skalos</a></div> <div class="iblock"> <span class="op5 nw small"> </span> <span class="small lmar nd fr"> #<a href="https://ubbdev.com/forums/ubbthreads.php/topics/38177/re-custom-user-titles-by-jimbo-skalos.html#Post38177" id="number38177" rel="nofollow">38177</a></span> <span class="cp fr nd op5 small"> <i class="fas fa-share-alt titlebar-item" id="menu_control_p38177" onclick="showHideMenu('menu_control_p38177','post_popup_38177')" title="Share Post"></i> </span> <span class="small lmar nd fr"> <span class="date">11/07/2000</span> <span class="time">1:01 AM</span> </span> </div></div> </td> </tr> <tr> <td class="author-content alvt mblwide" colspan="2"> <div class="alvt fr"> <div class="small author-registered">Joined: <span class="date">Nov 2000</span></div> <div class="small author-totalposts">Posts: 68</div><div class="small author-location fwrap"><a href="https://maps.google.com/maps?q=England" rel="nofollow" target="_blank">England</a></div></div> <div class="author-picture"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/1680/turbanator.html"><svg class="fl avatar-none rmar dblock" style="height:60px;line-height:60px;width:60px;" title="Turbanator's identicon" data-jdenticon-value="17a9a98677336e043b0fe21da686d1ce"></svg></a> </div> <div class="bold author-name fwrap dblock"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/1680/turbanator.html"><span class='username'>Turbanator</span></a> <span class="lmar rmar nw"> <img src="https://ubbdev.com/forums/images/moods/default/offline.gif" alt="Offline" title="Offline"> </span> </div> <div class="small author-title">Member</div> </td> </tr> <tr> <td class="author-content alvt mblthin" rowspan="2"> <div class="bold author-name fwrap"><span id="menu_control_38177"><a href="javascript:void(0);" onclick="showHideMenu('menu_control_38177','profile_popup_38177');"><span class='username'>Turbanator</span></a></span> </div> <div class="small author-title">Member</div> <div class="author-picture acvt" style="max-height:90px;max-width:90px;margin-bottom:6px;margin-top:6px; height:100%;width:100%; flex:0 0 auto;min-width:0;position:relative;"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/1680/turbanator.html"><svg class="avatar-none" style="height:90px;width:90px;" title="Turbanator's identicon" data-jdenticon-value="17a9a98677336e043b0fe21da686d1ce"></svg></a> <img src="https://ubbdev.com/forums/images/moods/default/offline.gif" class="author-mood" alt="Offline" title="Offline"> </div> <div class="small author-registered">Joined: <span class="date">Nov 2000</span></div> <div class="small author-totalposts">Posts: 68</div><div class="small author-location fwrap"><a href="https://maps.google.com/maps?q=England" rel="nofollow" target="_blank">England</a></div></td> <td class="post-content alvt"> <div class="post_inner"> <div id="body8"><IMG SRC="http://www.turbanator.freeserve.co.uk/Turb-T/Side-Small.gif" border=0> *pst* sub, I released mine <img src="https://ubbdev.com/ubb/smilies/wink.gif" alt="[Linked Image]" class="post-image" style="height:auto!important;max-width:100%!important;"/></div> <br> </div> </td></tr> </table> </td> </tr> </table> </td></tr> </table> <div id="post_popup_38177" style="display:none;"> <table class="popup_menu"> <tr><td class="popup_menu_content"><a href="javascript:void(0);" data-clipboard-text="https://ubbdev.com/forums/ubbthreads.php/topics/38177/re-custom-user-titles-by-jimbo-skalos.html#Post38177" class="clipbtn" rel="nofollow"> <i class="far fa-copy fa-fw menu-item" aria-hidden="true"></i> Copy Link to Clipboard</a> </td></tr> <tr><td class="popup_menu_content"><a href="https://www.facebook.com/sharer/sharer.php?u=https://ubbdev.com/forums/ubbthreads.php/topics/38177%23Post38177.html" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=350,width=600');return false;" target="_blank"><i class="fab fa-facebook-f fa-fw menu-item" aria-hidden="true"></i> Share Post on Facebook</a></td></tr> <tr><td class="popup_menu_content"><a href="https://reddit.com/submit?url=https://ubbdev.com/forums/ubbthreads.php/topics/38177%23Post38177.html&title=Re%3A%20Custom%20User%20Titles%20by%20Jimbo%2FSkalos" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=550,width=600');return false;" target="_blank"><i class="fab fa-reddit-alien fa-fw menu-item" aria-hidden="true"></i> Share Post on Reddit</a></td></tr> </table> </div> <script>registerPopup("post_popup_38177");</script> <a id="Post38178"></a> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td> <table class="fw "> <tr> <td class="subjecttable" colspan="2"> <div class="fblock" style="align-items:center;"> <img src="https://ubbdev.com/forums/images/icons/default/book.gif" class="rmar" alt="" style="max-height:12px;vertical-align:text-top;"><div class="truncate bold" title="Re: Custom User Titles by Jimbo/Skalos"><a href="https://ubbdev.com/forums/ubbthreads.php/topics/38178/re-custom-user-titles-by-jimbo-skalos.html#Post38178" class="nd" rel="nofollow">Re: Custom User Titles by Jimbo/Skalos</a></div> <div class="iblock"> <span class="op5 nw small"> </span> <span class="small lmar nd fr"> #<a href="https://ubbdev.com/forums/ubbthreads.php/topics/38178/re-custom-user-titles-by-jimbo-skalos.html#Post38178" id="number38178" rel="nofollow">38178</a></span> <span class="cp fr nd op5 small"> <i class="fas fa-share-alt titlebar-item" id="menu_control_p38178" onclick="showHideMenu('menu_control_p38178','post_popup_38178')" title="Share Post"></i> </span> <span class="small lmar nd fr"> <span class="date">11/07/2000</span> <span class="time">7:32 AM</span> </span> </div></div> </td> </tr> <tr> <td class="author-content alvt mblwide" colspan="2"> <div class="alvt fr"> <div class="small author-registered">Joined: <span class="date">Sep 2000</span></div> <div class="small author-totalposts">Posts: 58</div><div class="small author-location fwrap"><a href="https://maps.google.com/maps?q=New+York+State" rel="nofollow" target="_blank">New York State</a></div></div> <div class="author-picture"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/1294/subzero.html"><svg class="fl avatar-none rmar dblock" style="height:60px;line-height:60px;width:60px;" title="Subzero's identicon" data-jdenticon-value="cef4c38270db4795b6b8b6f915106f3f"></svg></a> </div> <div class="bold author-name fwrap dblock"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/1294/subzero.html"><span class='username'>Subzero</span></a> <span class="lmar rmar nw"> <img src="https://ubbdev.com/forums/images/moods/default/offline.gif" alt="Offline" title="Offline"> </span> </div> <div class="small author-title">Member</div> </td> </tr> <tr> <td class="author-content alvt mblthin" rowspan="2"> <div class="bold author-name fwrap"><span id="menu_control_38178"><a href="javascript:void(0);" onclick="showHideMenu('menu_control_38178','profile_popup_38178');"><span class='username'>Subzero</span></a></span> </div> <div class="small author-title">Member</div> <div class="author-picture acvt" style="max-height:90px;max-width:90px;margin-bottom:6px;margin-top:6px; height:100%;width:100%; flex:0 0 auto;min-width:0;position:relative;"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/1294/subzero.html"><svg class="avatar-none" style="height:90px;width:90px;" title="Subzero's identicon" data-jdenticon-value="cef4c38270db4795b6b8b6f915106f3f"></svg></a> <img src="https://ubbdev.com/forums/images/moods/default/offline.gif" class="author-mood" alt="Offline" title="Offline"> </div> <div class="small author-registered">Joined: <span class="date">Sep 2000</span></div> <div class="small author-totalposts">Posts: 58</div><div class="small author-location fwrap"><a href="https://maps.google.com/maps?q=New+York+State" rel="nofollow" target="_blank">New York State</a></div></td> <td class="post-content alvt"> <div class="post_inner"> <div id="body9"><div class="ubbcode-block"><div class="ubbcode-header">Quote</div><div class="ubbcode-body">quote:</div></div>Where Dammit <img src="https://ubbdev.com/ubb/smilies/smile.gif" alt="[Linked Image]" class="post-image" style="height:auto!important;max-width:100%!important;"/></div> <br> </div> <div class="signature mblthin"> <hr class="signature"> Love life, feel life,,be life. </div> </td></tr> </table> </td> </tr> </table> </td></tr> </table> <div id="post_popup_38178" style="display:none;"> <table class="popup_menu"> <tr><td class="popup_menu_content"><a href="javascript:void(0);" data-clipboard-text="https://ubbdev.com/forums/ubbthreads.php/topics/38178/re-custom-user-titles-by-jimbo-skalos.html#Post38178" class="clipbtn" rel="nofollow"> <i class="far fa-copy fa-fw menu-item" aria-hidden="true"></i> Copy Link to Clipboard</a> </td></tr> <tr><td class="popup_menu_content"><a href="https://www.facebook.com/sharer/sharer.php?u=https://ubbdev.com/forums/ubbthreads.php/topics/38178%23Post38178.html" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=350,width=600');return false;" target="_blank"><i class="fab fa-facebook-f fa-fw menu-item" aria-hidden="true"></i> Share Post on Facebook</a></td></tr> <tr><td class="popup_menu_content"><a href="https://reddit.com/submit?url=https://ubbdev.com/forums/ubbthreads.php/topics/38178%23Post38178.html&title=Re%3A%20Custom%20User%20Titles%20by%20Jimbo%2FSkalos" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=550,width=600');return false;" target="_blank"><i class="fab fa-reddit-alien fa-fw menu-item" aria-hidden="true"></i> Share Post on Reddit</a></td></tr> </table> </div> <script>registerPopup("post_popup_38178");</script> <div id="island1"> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td class="tdheader"> Sponsored Links </td> </tr> <tr> <td class="alt-1"> <!-- UBBDev - Responsive --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5168900358893374" data-ad-slot="3255258746" data-ad-format="auto"></ins> <script>(adsbygoogle = window.adsbygoogle || []).push({});</script> </td> </tr> </table> </td></tr> </table> </div> <div class="fb-twitter-share"> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v3.0"; fjs.parentNode.insertBefore(js, fjs); } (document, 'script', 'facebook-jssdk'));</script> <div style="display:block; float:left; text-align:center;margin: 0 auto; padding-right:4px;"> <div class="fb-like" data-href="https://ubbdev.com/forums/ubbthreads.php/topics/38169.html" data-layout="button" data-action="like" data-size="small" data-share="true"></div> </div> </div> <div class="ubb-shareaholic"><div class="shareaholic-canvas" data-link="https://ubbdev.com/forums/ubbthreads.php/topics/38169.html" data-app="share_buttons" data-app-id="572666"></div></div> <div class="small acvm"><form method="post" action="https://ubbdev.com/forums/ubbthreads.php"> <input type="hidden" name="ubb" value="jumper"> <div class="container"> <label for="board" onclick="this.form.submit()">Hop To</label> <select name="board" id="board" class="form-select" onchange="this.form.submit()"> <option value="c:2">Announcements ------</option><option value="1" >  Announcements</option><option value="92" >    Official UBB.threads Dev</option><option value="30" >    Team UBBDev</option><option value="35" >    U-Zine</option><option value="66" >      Articles</option><option value="64" >      Open House</option><option value="67" >      Reviews</option><option value="68" >      Interviews</option><option value="69" >      Member Spotlight</option><option value="70" >      uStore</option><option value="90" >  UBB.Wiki</option><option value="c:13">UBB.threads 7 Development ------</option><option value="24" >  How Do I?</option><option value="21" >  Addons and Modifications</option><option value="27" >  Modification Ideas</option><option value="29" >  Templates</option><option value="28" >  CSS Styles and Themes</option><option value="16" >  International Support</option><option value="c:4">Community Development ------</option><option value="60" >  How-To/Site Help Library</option><option value="3" >  Design, Style and Graphics</option><option value="78" >    Graphics and Icons</option><option value="85" >    Resources and Tutorials</option><option value="63" >    Design Matters</option><option value="38" >  Promoting Your Community</option><option value="8" >    Forum Showcase</option><option value="49" >  Programming</option><option value="15" >    HTML, CSS, and JavaScript</option><option value="13" >    PHP and Server-side Scripting</option><option value="51" >    MySQL and Server Configuration</option><option value="10" >    Web Hosting</option><option value="c:1">General Discussion ------</option><option value="4" >  Suggestions and Feedback</option><option value="11" >  Developer for Hire</option><option value="9" >  Chit Chat</option><option value="c:3">UBB.threads 6 ------</option><option value="62" >  V6 Modifications</option><option value="54" >    Archived Mods</option><option value="56" >    V6 Mod Ideas</option><option value="48" >    Forum Design Integration</option><option value="55" >    Templates</option><option value="52" >    CSS Styles and Themes</option><option value="50" >    International Support (German)</option><option value="42" >  Bug Reports</option><option value="20" >  UBB.portal (CMS)</option><option value="44" >  V5.php Modifications</option><option value="47" >    V5.php Mod Ideas</option><option value="45" >  V5.php Bug Fixes</option><option value="c:18">UBB.classic ------</option><option value="31" >  V6.4 - 6.7 Modifications</option><option value="7" >    V6 Mod Ideas</option><option value="14" >    Forum Design Integration</option><option value="12" >    International Support</option><option value="19" >  V6 MultiHack Mods</option><option value="86" >    MultiHack 2.0</option><option value="87" >    MultiHack 1.5</option><option value="18" >  V6 Mod Questions</option><option value="72" >  V5 Modifications</option><option value="6" selected="selected">  V5 Mod Questions</option><option value="c:27">WWWThreads ------</option><option value="36" >  WWWThreads Information</option> </select> <noscript><input type="submit" name="Jump" value="Go" class="form-button"></noscript> </div> </form> </div><br> <div id="options_popup" style="display:none;"> <table class="popup_menu"> <tr> <td class="popup_menu_content"><a target="_blank" href="https://ubbdev.com/forums/ubbthreads.php/ubb/printthread/Board/6/main/3627/type/thread.html" class="nd" rel="nofollow">Print Thread</a></td></tr> <tr><td class="popup_menu_content"> <a href="https://ubbdev.com/forums/ubbthreads.php/posts/38178.html" class="nd" rel="nofollow">Switch to Threaded Mode</a> </td> </tr> <tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/like/type/thread/target/3627.html" class="nd" rel="nofollow">Show Likes</a></td></tr> </table> </div> <script>registerPopup("options_popup");</script> <div class="alert-box alert-success"><div class="fas fa-check-circle fa-fw"></div>Link Copied to Clipboard</div> <script>$(".clipbtn").click(function () { $("div.alert-success").fadeIn(300).delay(2000).fadeOut(400); } );</script> <div id="rating_popup" style="display:none;"> <form method="post" action="https://ubbdev.com/forums/ubbthreads.php"> <input type="hidden" name="ubb" value="doratethread"> <input type="hidden" name="Ratee" value=""> <input type="hidden" name="Board" value="6"> <input type="hidden" name="Number" value="38178"> <input type="hidden" name="Main" value="3627"> <input type="hidden" name="what" value="showflat"> <table class="popup_menu"> <tr><td class="popup_menu_content noclose"><label for="star5">5 <i class="far fa-star fa-fw" aria-hidden="true"></i><input id="star5" type="radio" name="rating" value="5"> Excellent</label></td></tr> <tr><td class="popup_menu_content noclose"><label for="star4">4 <i class="far fa-star fa-fw" aria-hidden="true"></i><input id="star4" type="radio" name="rating" value="4"> Good</label></td></tr> <tr><td class="popup_menu_content noclose"><label for="star3">3 <i class="far fa-star fa-fw" aria-hidden="true"></i><input id="star3" type="radio" name="rating" value="3"> Average</label></td></tr> <tr><td class="popup_menu_content noclose"><label for="star2">2 <i class="far fa-star fa-fw" aria-hidden="true"></i><input id="star2" type="radio" name="rating" value="2"> Bad</label></td></tr> <tr><td class="popup_menu_content noclose"><label for="star1">1 <i class="far fa-star fa-fw" aria-hidden="true"></i><input id="star1" type="radio" name="rating" value="1"> Terrible</label></td></tr> <tr><td class="popup_menu_content acvt"><span class="p2"><input type="submit" name="dorate" value="Rate it" class="form-button"></span></td></tr> </table> </form> </div> <script>registerPopup("rating_popup");</script> <div id="profile_popup_38169" style="display:none;"><table class="popup_menu"><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/users/1054/billy-bandit.html" class="nd" rel="nofollow"><i class="far fa-user fa-fw menu-item" aria-hidden="true"></i> View Profile</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/sendprivate/User/1054.html" class="nd" rel="nofollow"><i class="far fa-envelope fa-fw menu-item" aria-hidden="true"></i> Private Message</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/addfavuser/User/1054/n/38169/p/1/f/1.html" class="nd" rel="nofollow"><i class="far fa-bookmark fa-fw menu-item" aria-hidden="true"></i> Follow User</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/userposts/id/1054.html" class="nd" rel="nofollow"><i class="far fa-comment fa-fw menu-item" aria-hidden="true"></i> Forum Posts</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/like/type/user/target/1054.html" class="nd" rel="nofollow"><i class="far fa-thumbs-up fa-fw menu-item" aria-hidden="true"></i> Like Summary</a></td></tr></table></div><script>registerPopup("profile_popup_38169");</script><div id="profile_popup_38170" style="display:none;"><table class="popup_menu"><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/users/1054/billy-bandit.html" class="nd" rel="nofollow"><i class="far fa-user fa-fw menu-item" aria-hidden="true"></i> View Profile</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/sendprivate/User/1054.html" class="nd" rel="nofollow"><i class="far fa-envelope fa-fw menu-item" aria-hidden="true"></i> Private Message</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/addfavuser/User/1054/n/38170/p/1/f/1.html" class="nd" rel="nofollow"><i class="far fa-bookmark fa-fw menu-item" aria-hidden="true"></i> Follow User</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/userposts/id/1054.html" class="nd" rel="nofollow"><i class="far fa-comment fa-fw menu-item" aria-hidden="true"></i> Forum Posts</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/like/type/user/target/1054.html" class="nd" rel="nofollow"><i class="far fa-thumbs-up fa-fw menu-item" aria-hidden="true"></i> Like Summary</a></td></tr></table></div><script>registerPopup("profile_popup_38170");</script><div id="profile_popup_38171" style="display:none;"><table class="popup_menu"><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/users/1054/billy-bandit.html" class="nd" rel="nofollow"><i class="far fa-user fa-fw menu-item" aria-hidden="true"></i> View Profile</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/sendprivate/User/1054.html" class="nd" rel="nofollow"><i class="far fa-envelope fa-fw menu-item" aria-hidden="true"></i> Private Message</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/addfavuser/User/1054/n/38171/p/1/f/1.html" class="nd" rel="nofollow"><i class="far fa-bookmark fa-fw menu-item" aria-hidden="true"></i> Follow User</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/userposts/id/1054.html" class="nd" rel="nofollow"><i class="far fa-comment fa-fw menu-item" aria-hidden="true"></i> Forum Posts</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/like/type/user/target/1054.html" class="nd" rel="nofollow"><i class="far fa-thumbs-up fa-fw menu-item" aria-hidden="true"></i> Like Summary</a></td></tr></table></div><script>registerPopup("profile_popup_38171");</script><div id="profile_popup_38172" style="display:none;"><table class="popup_menu"><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/users/1126/travis.html" class="nd" rel="nofollow"><i class="far fa-user fa-fw menu-item" aria-hidden="true"></i> View Profile</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/sendprivate/User/1126.html" class="nd" rel="nofollow"><i class="far fa-envelope fa-fw menu-item" aria-hidden="true"></i> Private Message</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/addfavuser/User/1126/n/38172/p/1/f/1.html" class="nd" rel="nofollow"><i class="far fa-bookmark fa-fw menu-item" aria-hidden="true"></i> Follow User</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/userposts/id/1126.html" class="nd" rel="nofollow"><i class="far fa-comment fa-fw menu-item" aria-hidden="true"></i> Forum Posts</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/like/type/user/target/1126.html" class="nd" rel="nofollow"><i class="far fa-thumbs-up fa-fw menu-item" aria-hidden="true"></i> Like Summary</a></td></tr></table></div><script>registerPopup("profile_popup_38172");</script><div id="profile_popup_38173" style="display:none;"><table class="popup_menu"><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/users/899/ga-cloud-strife.html" class="nd" rel="nofollow"><i class="far fa-user fa-fw menu-item" aria-hidden="true"></i> View Profile</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/sendprivate/User/899.html" class="nd" rel="nofollow"><i class="far fa-envelope fa-fw menu-item" aria-hidden="true"></i> Private Message</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/addfavuser/User/899/n/38173/p/1/f/1.html" class="nd" rel="nofollow"><i class="far fa-bookmark fa-fw menu-item" aria-hidden="true"></i> Follow User</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/userposts/id/899.html" class="nd" rel="nofollow"><i class="far fa-comment fa-fw menu-item" aria-hidden="true"></i> Forum Posts</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/like/type/user/target/899.html" class="nd" rel="nofollow"><i class="far fa-thumbs-up fa-fw menu-item" aria-hidden="true"></i> Like Summary</a></td></tr></table></div><script>registerPopup("profile_popup_38173");</script><div id="profile_popup_38174" style="display:none;"><table class="popup_menu"><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/users/67/ultimatesystem.html" class="nd" rel="nofollow"><i class="far fa-user fa-fw menu-item" aria-hidden="true"></i> View Profile</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/sendprivate/User/67.html" class="nd" rel="nofollow"><i class="far fa-envelope fa-fw menu-item" aria-hidden="true"></i> Private Message</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/addfavuser/User/67/n/38174/p/1/f/1.html" class="nd" rel="nofollow"><i class="far fa-bookmark fa-fw menu-item" aria-hidden="true"></i> Follow User</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/userposts/id/67.html" class="nd" rel="nofollow"><i class="far fa-comment fa-fw menu-item" aria-hidden="true"></i> Forum Posts</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/like/type/user/target/67.html" class="nd" rel="nofollow"><i class="far fa-thumbs-up fa-fw menu-item" aria-hidden="true"></i> Like Summary</a></td></tr></table></div><script>registerPopup("profile_popup_38174");</script><div id="profile_popup_38175" style="display:none;"><table class="popup_menu"><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/users/1294/subzero.html" class="nd" rel="nofollow"><i class="far fa-user fa-fw menu-item" aria-hidden="true"></i> View Profile</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/sendprivate/User/1294.html" class="nd" rel="nofollow"><i class="far fa-envelope fa-fw menu-item" aria-hidden="true"></i> Private Message</a></td></tr><tr><td class="popup_menu_content"><a href="//www.globaltechhosting.com" class="nd" target="_blank"><i class="fas fa-link fa-fw menu-item" aria-hidden="true"></i> Website</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/addfavuser/User/1294/n/38175/p/1/f/1.html" class="nd" rel="nofollow"><i class="far fa-bookmark fa-fw menu-item" aria-hidden="true"></i> Follow User</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/userposts/id/1294.html" class="nd" rel="nofollow"><i class="far fa-comment fa-fw menu-item" aria-hidden="true"></i> Forum Posts</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/like/type/user/target/1294.html" class="nd" rel="nofollow"><i class="far fa-thumbs-up fa-fw menu-item" aria-hidden="true"></i> Like Summary</a></td></tr></table></div><script>registerPopup("profile_popup_38175");</script><div id="profile_popup_38176" style="display:none;"><table class="popup_menu"><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/users/1679/bassman.html" class="nd" rel="nofollow"><i class="far fa-user fa-fw menu-item" aria-hidden="true"></i> View Profile</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/sendprivate/User/1679.html" class="nd" rel="nofollow"><i class="far fa-envelope fa-fw menu-item" aria-hidden="true"></i> Private Message</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/addfavuser/User/1679/n/38176/p/1/f/1.html" class="nd" rel="nofollow"><i class="far fa-bookmark fa-fw menu-item" aria-hidden="true"></i> Follow User</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/userposts/id/1679.html" class="nd" rel="nofollow"><i class="far fa-comment fa-fw menu-item" aria-hidden="true"></i> Forum Posts</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/like/type/user/target/1679.html" class="nd" rel="nofollow"><i class="far fa-thumbs-up fa-fw menu-item" aria-hidden="true"></i> Like Summary</a></td></tr></table></div><script>registerPopup("profile_popup_38176");</script><div id="profile_popup_38177" style="display:none;"><table class="popup_menu"><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/users/1680/turbanator.html" class="nd" rel="nofollow"><i class="far fa-user fa-fw menu-item" aria-hidden="true"></i> View Profile</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/sendprivate/User/1680.html" class="nd" rel="nofollow"><i class="far fa-envelope fa-fw menu-item" aria-hidden="true"></i> Private Message</a></td></tr><tr><td class="popup_menu_content"><a href="//www.turbanator.net" class="nd" target="_blank"><i class="fas fa-link fa-fw menu-item" aria-hidden="true"></i> Website</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/addfavuser/User/1680/n/38177/p/1/f/1.html" class="nd" rel="nofollow"><i class="far fa-bookmark fa-fw menu-item" aria-hidden="true"></i> Follow User</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/userposts/id/1680.html" class="nd" rel="nofollow"><i class="far fa-comment fa-fw menu-item" aria-hidden="true"></i> Forum Posts</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/like/type/user/target/1680.html" class="nd" rel="nofollow"><i class="far fa-thumbs-up fa-fw menu-item" aria-hidden="true"></i> Like Summary</a></td></tr></table></div><script>registerPopup("profile_popup_38177");</script><div id="profile_popup_38178" style="display:none;"><table class="popup_menu"><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/users/1294/subzero.html" class="nd" rel="nofollow"><i class="far fa-user fa-fw menu-item" aria-hidden="true"></i> View Profile</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/sendprivate/User/1294.html" class="nd" rel="nofollow"><i class="far fa-envelope fa-fw menu-item" aria-hidden="true"></i> Private Message</a></td></tr><tr><td class="popup_menu_content"><a href="//www.globaltechhosting.com" class="nd" target="_blank"><i class="fas fa-link fa-fw menu-item" aria-hidden="true"></i> Website</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/addfavuser/User/1294/n/38178/p/1/f/1.html" class="nd" rel="nofollow"><i class="far fa-bookmark fa-fw menu-item" aria-hidden="true"></i> Follow User</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/userposts/id/1294.html" class="nd" rel="nofollow"><i class="far fa-comment fa-fw menu-item" aria-hidden="true"></i> Forum Posts</a></td></tr><tr><td class="popup_menu_content"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/like/type/user/target/1294.html" class="nd" rel="nofollow"><i class="far fa-thumbs-up fa-fw menu-item" aria-hidden="true"></i> Like Summary</a></td></tr></table></div><script>registerPopup("profile_popup_38178");</script> </div><div id="right_col" class="ctable right_col "><div id="island3"> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td class="righttdheader"> Donate Today! </td> </tr> <tr> <td class="rightalt-1"> <div style="text-align:center"> <a href="https://www.virtualnightclub.net/order/donate.html" target="_blank"><img src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" alt="Donate via PayPal"></a> </div> <br> Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.<br><br> Please also see our parent organization <a href="https://www.virtualnightclub.net/">VNC Web Services</a> if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services. </td> </tr> </table> </td></tr> </table> </div> <div id="island5"> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td class="righttdheader"> Recommended Hosts </td> </tr> <tr> <td class="rightalt-1"> We have personally worked with and recommend the following Web Hosts:<br> • <a href="https://tracking.missaffiliate.com/aff_c?offer_id=114&aff_id=2256&source=ubbdev" target="_blank">Stable Host</a><br> • <a href="https://www.bluehost.com/track/vnc/" target="_blank">bluehost</a><br> • <a href="https://interserver.net/r/162052" target="_blank">InterServer</a> </td> </tr> </table> </td></tr> </table> </div> <div id="island2"> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td class="righttdheader"> Visit us on Facebook </td> </tr> <tr> <td class="rightalt-1"> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&appId=750842914983389&version=v2.0"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <div class="fb-like-box acvt" data-colorscheme="light" data-href="https://www.facebook.com/UBBDev" data-width="242" data-show-faces="true" data-stream="false" data-show-border="false" data-header="false"></div> </td> </tr> </table> </td></tr> </table> </div> <div id="island_calendar"> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td class="righttdheader" colspan="7"> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/calendar.html">April</a> </td> </tr> <tr class="rightalt-1"> <td class="vpad"> <span class="standouttext">S</span></td> <td class="vpad"> M</td> <td class="vpad"> T</td> <td class="vpad"> W</td> <td class="vpad"> T</td> <td class="vpad"> F</td> <td class="vpad"> <span class="standouttext">S</span></td> </tr> <tr class="rightalt-1"> <td> </td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/1/month/4/year/2024.html"> <span id="day1" title="Birthday: smoknz28 (54) Birthday: Hedwig09 (35) ">1</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/2/month/4/year/2024.html"> <span id="day2" title="Birthday: ZeRtEr (40) Birthday: Travis959 (39) ">2</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/3/month/4/year/2024.html"> <span id="day3" title="Birthday: Smokey the Bear (79) Birthday: murderer20 (40) Birthday: muhammadi (38) ">3</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/4/month/4/year/2024.html"> <span id="day4" title="Birthday: -nRoK- (48) Birthday: Web (38) Birthday: Goofster (33) ">4</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/5/month/4/year/2024.html"> <span id="day5" title="Birthday: Ultra GrrL (45) ">5</span> </a></td> <td> <span id="day6" title="">6</span> </td> </tr> <tr class="rightalt-1"> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/7/month/4/year/2024.html"> <span id="day7" title="Birthday: omegatron (58) Birthday: Datal (47) Birthday: syed imran (45) Birthday: Tomilixx (43) Birthday: Brett (40) Birthday: Bazz_2k1 (36) ">7</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/8/month/4/year/2024.html"> <span id="day8" title="Birthday: Gerrit (59) Birthday: Gizmo (41) ">8</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/9/month/4/year/2024.html"> <span id="day9" title="Birthday: Electra (64) Birthday: abiwyrax (34) ">9</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/10/month/4/year/2024.html"> <span id="day10" title="Birthday: Hofaah (42) ">10</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/11/month/4/year/2024.html"> <span id="day11" title="Birthday: Lannie (69) Birthday: dre (48) Birthday: kairos13 (23) ">11</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/12/month/4/year/2024.html"> <span id="day12" title="Birthday: Babai (44) ">12</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/13/month/4/year/2024.html"> <span id="day13" title="Birthday: PF (42) ">13</span> </a></td> </tr> <tr class="rightalt-1"> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/14/month/4/year/2024.html"> <span id="day14" title="Birthday: anangelsarms (51) Birthday: Dave2 (37) ">14</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/15/month/4/year/2024.html"> <span id="day15" title="Birthday: Sam1504 (47) Birthday: NitrusDesigns (44) Birthday: alex-and-r (43) Birthday: Mewtwo (36) Birthday: NoXiOuS (34) ">15</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/16/month/4/year/2024.html"> <span id="day16" title="Birthday: llewxamevad (53) Birthday: Brad.loo (39) Birthday: Brad-loo (39) ">16</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/17/month/4/year/2024.html"> <span id="day17" title="Birthday: Magle (47) Birthday: super (35) Birthday: .::PSD Freak::. (23) ">17</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/18/month/4/year/2024.html"> <span id="day18" title="Birthday: Antoni Deighton (44) Birthday: mK[mark] (41) ">18</span> </a></td> <td> <span id="day19" title="">19</span> </td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/20/month/4/year/2024.html"> <span id="day20" title="Birthday: Trunklid (66) Birthday: MD (63) Birthday: Raconteur (57) Birthday: tal s8 (38) ">20</span> </a></td> </tr> <tr class="rightalt-1"> <td> <span id="day21" title="">21</span> </td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/22/month/4/year/2024.html"> <span id="day22" title="Birthday: Maragato (124) Birthday: dimopoulos (54) Birthday: josh (38) ">22</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/23/month/4/year/2024.html"> <span id="day23" title="Birthday: Blade (47) ">23</span> </a></td> <td> <span id="day24" title="">24</span> </td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/25/month/4/year/2024.html"> <span id="day25" title="Birthday: knowhim (65) Birthday: JackSim (44) Birthday: VINICIUS LOUIS (38) ">25</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/26/month/4/year/2024.html"> <span id="day26" title="Birthday: kati (60) Birthday: Dino (55) Birthday: Saxeus (44) Birthday: kainashi (38) ">26</span> </a></td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/27/month/4/year/2024.html"> <span id="day27" title="Birthday: Chucky (47) ">27</span> </a></td> </tr> <tr class="rightalt-1"> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/28/month/4/year/2024.html"> <span id="day28" title="Birthday: e,o.w. (52) ">28</span> </a></td> <td> <span id="day29" title="">29</span> </td> <td> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showday/day/30/month/4/year/2024.html"> <span id="day30" title="Birthday: CWest (71) ">30</span> </a></td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> </table> </td></tr> </table> </div> <script> // <![CDATA[ day = get_object("day" + today); currenttitle = day.title; day.title = "Today\n" + currenttitle; day.className = "standouttext"; // ]]> </script> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr><td class="righttdheader"> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/showmembers.html">Member Spotlight</a> </td></tr> <tr><td class="rightalt-1 acvt"> <div class="fw acvt" style="padding:6px 0;"> <a href="https://ubbdev.com/forums/ubbthreads.php/users/4789/isaac.html"><img src="https://ubbdev.com/uploads/avatars/4789.jpg" class="avatar" style="max-width:150px;width:80%;" alt="isaac"></a> <br> <a href="https://ubbdev.com/forums/ubbthreads.php/users/4789/isaac.html" class="bold" style="font-size:120%;"><span class='adminname'>isaac</span></a> <br>California<hr style="height:1px;width:50%;"> </div> <div class="alvt"> Posts: <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/userposts/id/4789/isaac.html">1,157</a><br> Joined: July 2001 </div> </td></tr> </table> </td></tr> </table> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td class="righttdheader"> Forum Statistics</td> </tr> <tr> <td class="rightalt-1 alvt"> <div>Forums<span class="fr">63</span></div> <div>Topics<span class="fr">37,573</span></div> <div>Posts<span class="fr">293,925</span></div> <div>Members<span class="fr">13,849</span></div> </td></tr><tr><td class="rightalt-1 alvt"> <div>Most Online<span class="arvm fr">5,166<br><span class="small"><span class="date">Sep 15th, 2019</span></span></span></div> </td> </tr> </table> </td></tr> </table> <div id="island40"> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td class="righttdheader"> Today's Statistics </td> </tr> <tr> <td class="rightalt-1"> <div class="extended_stats"> <div class="extended_data">Currently Online <span class="fr"></span></div> <div class="extended_data">Topics Created <span class="fr"></span></div> <div class="extended_data">Posts Made <span class="fr"></span></div> <div class="extended_data">Users Online <span class="fr"></span></div> <div class="extended_data">Birthdays <span class="fr"></span></div> </div> </td> </tr> </table> </td></tr> </table> </div> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td class="righttdheader"> Top Posters</td> </tr> <tr> <td class="rightalt-1 alvt"> <div> <a href="https://ubbdev.com/forums/ubbthreads.php/users/387/allenayres.html"><span class='fwrap' style='color: #72587F'>AllenAyres</span></a> <span class="fr">21,079</span> </div> <div> <a href="https://ubbdev.com/forums/ubbthreads.php/users/9826/joshpet.html"><span class='username'>JoshPet</span></a> <span class="fr">10,369</span> </div> <div> <a href="https://ubbdev.com/forums/ubbthreads.php/users/3036/lk.html"><span class='username'>LK</span></a> <span class="fr">7,394</span> </div> <div> <a href="https://ubbdev.com/forums/ubbthreads.php/users/4185/lord-dexter.html"><span class='username'>Lord Dexter</span></a> <span class="fr">6,708</span> </div> <div> <a href="https://ubbdev.com/forums/ubbthreads.php/users/42/gizmo.html"><span class='adminname'>Gizmo</span></a> <span class="fr">5,833</span> </div> <div> <a href="https://ubbdev.com/forums/ubbthreads.php/users/35/charles-capps.html"><span class='username'>Charles Capps</span></a> <span class="fr">5,073</span> </div> <div> <a href="https://ubbdev.com/forums/ubbthreads.php/users/476/greg-hard.html"><span class='username'>Greg Hard</span></a> <span class="fr">4,625</span> </div> </td> </tr> </table> </td></tr> </table> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td class="righttdheader"> Top Posters<span class="small fr">(30 Days)</span> </td> </tr> <tr> <td class="rightalt-1 alvt"> </td> </tr> </table> </td></tr> </table> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td class="righttdheader"> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/like/span/all.html">Top Likes Received</a> </td> </tr> <tr> <td class="rightalt-1 alvt"> <div> <a href="https://ubbdev.com/forums/ubbthreads.php/users/4789/isaac.html"><span class='adminname'>isaac</span></a> <span class="fr">82</span> </div> <div> <a href="https://ubbdev.com/forums/ubbthreads.php/users/42/gizmo.html"><span class='adminname'>Gizmo</span></a> <span class="fr">20</span> </div> <div> <a href="https://ubbdev.com/forums/ubbthreads.php/users/3846/brett.html"><span class='username'>Brett</span></a> <span class="fr">7</span> </div> <div> <a href="https://ubbdev.com/forums/ubbthreads.php/users/85/ruben-rocha.html"><span class='modname'>Ruben Rocha</span></a> <span class="fr">4</span> </div> <div> <a href="https://ubbdev.com/forums/ubbthreads.php/users/387/allenayres.html"><span class='fwrap' style='color: #72587F'>AllenAyres</span></a> <span class="fr">3</span> </div> <div> <a href="https://ubbdev.com/forums/ubbthreads.php/users/11158/webguy.html"><span class='username'>WebGuy</span></a> <span class="fr">2</span> </div> <div> <a href="https://ubbdev.com/forums/ubbthreads.php/users/14639/morgan.html"><span class='username'>Morgan</span></a> <span class="fr">2</span> </div> </td> </tr> </table> </td></tr> </table> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td class="righttdheader"> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/like.html">Top Likes Received</a> <span class="small fr">(30 Days)</span> </td> </tr> <tr> <td class="rightalt-1 alvt"> None yet</td> </tr> </table> </td></tr> </table> </div></div></td></tr> </table> </td> </tr> <tr> <td> <div class="acvm fw"> <form method="post" name="prefs"> <input type="hidden" name="curl" value="%2F%2Fubbdev.com%2Fforums%2Fubbthreads.php%2Ftopics%2F38178%2Fcustom-user-titles-by-jimbo-skalos.html"> <select name="style" onchange="changePrefs('style',this.form.style.value);" class="form-input"> <optgroup label="Style Chooser"> <option value="0">Default Style</option> <option value="42">UBBDev75 - Worn</option> <option value="107">UBBDev76</option> <option value="154">UBBDev77</option> <option selected="selected" value="158">UBBDev80</option> <option value="81">UBBT70</option> <option value="82">UBBT70 - Light</option> <option value="123">UBBT75</option> <option value="136">UBBT76</option> <option value="152">UBBT77</option> <option value="160">UBBT80</option> </optgroup> </select> </form> </div> <table class="t_outer fw"> <tr><td> <table class="t_inner fw"> <tr> <td class="footer alvm"> <table class="fw"> <tr> <td class="acvm"> <span class="alvm fl"> <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/boardrules/v/1.html" class="nw">Forum Rules</a> · <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/markallread.html" class="nw">Mark All Read</a> </span> <span class="arvm fr"> <a href="mailto:forum@ubbdev.com">Contact Us</a> · <a href="https://ubbdev.com/forums/ubbthreads.php/ubb/faq.html">Forum Help</a> · <a href="https://ubbdev.com">UBB.Dev</a> </span> </td> </tr> </table> </td> </tr> </table> </td></tr> </table> </td> </tr> </table> </div> <div style="text-align:center;"> The UBB.Developers Network (UBB.Dev/Threads.Dev) is <span style="white-space: nowrap;">©2000-2024</span> <span style="white-space: nowrap;"><a href="https://www.virtualnightclub.net/">VNC Web Services</a></span> </div> <br> </td> <td class="main-right-side"> </td> </tr> <tr> <td class="main-bottom-sides"><img src="/forums/styles/images/worn/blue_botrcorner.gif" style="width:9px;height:15px;" alt="" /></td> <td class="main-bottom"><img src="/forums/styles/images/worn/blue_bottombg.gif" style="width:204px;height:15px;" alt="" /></td> <td class="main-bottom-sides"><img src="/forums/styles/images/worn/blue_brcorner.gif" style="width:17px;height:15px;" alt="" /></td> </tr> </table> <!-- Google Analytics --> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'G-Y4EH8Q8NNT', 'auto'); ga('require', 'displayfeatures'); ga('require', 'linkid', 'linkid.js'); ga('send', 'pageview'); </script> <!-- Google Analytics --> <div class="small vmar acvm" style="line-height:normal;"> <a href="https://www.ubbcentral.com/" target="_blank">Powered by UBB.threads™ PHP Forum Software 8.0.0</a> <br><span class="op5"><a href="https://ubbdev.com/forums/ubbthreads.php/ubb/postlist/Board/92/page/1/sort/start/order/desc.html" target="_blank">(Preview build 20221218)</a></span></div> </body> </html>