Is it possible or can someone explain how to edit this and use it in UBB6..
Apart from this i think ubb6 is CooL
Admin http://www.webdosser.co.uk/cgi-bin/ultimatebb.cgi _/_ ~Stars 2000
/ ~The #1 Requested UBB Hack
// ~Finally Documented
COPYRIGHT CHRIS PALMER(DAWG911)
//
(0 0)
.----oOO----(_)-----------.
|A Chris Palmer Production|
| UBBCodeHacking.com|
`------------------oOO----'
|__|__|
|| ||
ooO Ooo
___ ___ {|}
(. .) (. .) (- -)
( v | v ) ( V )
====m=m===m=m==========m=m===========
***********************/|***********
Yeah, it's finally been documented,**
it is one of the easiest hacks to****
put together, but I made this guide**
for those who have no idea how to****
read & hack UBB Code.****************
*************************************
-Backup ubb_library.pl
-upload all gif files in zip to your
non-cgi folder, make sure its NONcgi
-do the following
***************************
------>Open ubb_library2.pl
***************************
***************************
---------------------->Find
***************************
if ($ThisStatus eq "Administrator") {
$ThisStatus = "$AdminTitle";
}
elsif ($ThisStatus eq "Moderator") {
$ThisStatus = "$ModeratorTitle";
}
elsif ($ThisStatus eq "Member") {
$ThisStatus = "$MemberTitle";
}
else {
$ThisStatus = "$JrMemberTitle";
}
***************************
------------->Replace with:
***************************
if ($ThisStatus eq "Administrator") {
$ThisStatus = "Administrator
<img src="$NonCGIURL/Admin1.gif"><img src="$NonCGIURL/Admin2.gif"><img src="$NonCGIURL/Admin3.gif"><img src="$NonCGIURL/Admin4.gif"><img src="$NonCGIURL/Admin5.gif">
";
}
elsif ($ThisStatus eq "Moderator") {
$ThisStatus = "Moderator
<img src="$NonCGIURL/star2.gif"><img src="$NonCGIURL/star2.gif"><img src="$NonCGIURL/star2.gif"><img src="$NonCGIURL/star2.gif">
";
}
else {
$ThisStatus = "Newbie
<img src="$NonCGIURL/star3.gif">
";
if ($thisprofile[7] > 4) {
$ThisStatus = "Cool Newbie
<img src="$NonCGIURL/star4.gif"><img src="$NonCGIURL/star4.gif">
";
}
if ($thisprofile[7] > 49) {
$ThisStatus = "Fast Newbie
<img src="$NonCGIURL/star5.gif"><img src="$NonCGIURL/star5.gif">
";
}
if ($thisprofile[7] > 99) {
$ThisStatus = "Crazy Poster
<img src="$NonCGIURL/star6.gif"><img src="$NonCGIURL/star6.gif"><img src="$NonCGIURL/star6.gif">
";
}
if ($thisprofile[7] > 249) {
$ThisStatus = "Insane Poster
<img src="$NonCGIURL/star7.gif"><img src="$NonCGIURL/star7.gif"><img src="$NonCGIURL/star7.gif">
";
}
if ($thisprofile[7] > 499) {
$ThisStatus = "Freak
<img src="$NonCGIURL/star8.gif"><img src="$NonCGIURL/star8.gif"><img src="$NonCGIURL/star8.gif"><img src="$NonCGIURL/star8.gif">
";
}
if ($thisprofile[7] > 999) {
$ThisStatus = "No Life<img src="$NonCGIURL/star2.gif"><img src="$NonCGIURL/star2.gif"><img src="$NonCGIURL/star2.gif"><img src="$NonCGIURL/star2.gif"><img src="$NonCGIURL/star2.gif">
";
}
}