The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Comments |
#2
|
|||
|
|||
![]()
Why not just add the html into custom user titles from the control panel?
~Chris |
#3
|
|||
|
|||
![]()
I think it is something that should be included by default with vB, with a toggle of course. |
#4
|
|||
|
|||
![]()
OK i see now
![]() ~Chris |
#5
|
|||
|
|||
![]()
Excellent! This is exactly what I was looking for! I was about to try making my own, but decided to take another look through the forums and see if somebody had already made one. Thanks, and well done
![]() BTW, does anyone know where I can get some star images? Preferably gold and silver. I'm afraid of what might happen if I attempt to make my own... lol. -Tom |
#6
|
|||
|
|||
![]() Quote:
![]() |
#7
|
|||
|
|||
![]()
Good idea! hehe. That site has some gold stars... I don't really care for the red ones.. I'll try to change the color to blue or silver I guess
![]() -Tom |
#8
|
|||
|
|||
![]()
A slightly different way, utilizing the options in the control panel is something I wrote a while back:
Add this in place of the hard coded ratings in the if( .. ) blocks. Code:
/// Begin Star Generation $stars = ""; $formulabits = explode( ";", $userstarformula ); for( $i = 0; $i < count( $formulabits ); $i++ ) { if( $userpostcount >= $formulabits[ $i ] ) { $stars .= $startext; } // end if } // end if if( empty( $stars ) ) { $stars = $startext; } // end if /// End Star Generation Add this after the "Styles Options" in options.php -- should be right up at the top around line 68. Code:
<li><a href=\"#stars\">Stars Options</a></li> Code:
<!--/// Stars stuff--> <tr><td colspan=2><p><hr></p></td></tr> <tr> <td><p><a name=\"stars\"></a><b>star character or image</b></p></td> <td><p><input type=\"text\" size=\"35\" name=\"newoption[startext]\" value=\"$startext\"></p></td> </tr> <tr><td colspan=2><p>What should we use for stars? Can be a character (e.g. *) or an image (e.g. http://www.yourboard.com/forums/img/...</p></td></tr> <!--// user star ratings--> <tr> <td><p><b>user star formula</b></p></td> <td><p><input type=\"text\" size=\"35\" name=\"newoption[userstarformula]\" value=\"$userstarformula\"></p></td> </tr> <tr><td colspan=2><p>What kind of formula to use for user star generation?<br></p></td></tr> <!--/// End Stars stuff--> Code:
<IMG SRC = "etc."> Also, the formula is something like this: 0;19;99;399;1999 So users with more than one post but less than 19 will get one star, users in between 19 and 99 will get two, etc. And if you want to add another star level, just add another number to the end! example: 0;19;99;399;1999;9999 But, if it seems harder to do, then don't worry about it -- I just thought I'd share it with people who are looking for this type of hack and might not want to mess with editing PHP files to find the right "formula" -- it took me a while to find a good balance, and if I had to keep uploading a PHP file I'd go crazy! ![]() |
#9
|
|||
|
|||
![]()
For some reason, I can't get Rangersfan's code to work on my board. I followed the instructions exactly and didn't change any of the code except for the image names and image sizes. Has anyone else had any problems getting this working? or is there something I have to do after editing showthread.php? Here's what my code looks like after I add the hack:
Code:
$userinfo=$DB_site->query_first("SELECT usergroupid,userid,email,username,usertitle,signature,showemail,homepage,icq,aim,yahoo,joindate,posts FROM user WHERE userid=$userid"); $username=htmlspecialchars($userinfo[username]); $searchuser=urlencode($userinfo[username]); $usertitle=$userinfo[usertitle]; $userjoindate=date($registereddateformat,$userinfo[joindate]+(($timeoffset+$bbtimezoneoffset)*3600)); $userpostcount=$userinfo[posts]; // --- Stars Hack by rangersfan $stars = ""; $s_usergroup = $userinfo[usergroupid]; $moderator=$DB_site->query_first("SELECT usergroupid FROM forumpermission WHERE usergroupid = $s_usergroup AND canadminedit=1"); if (($moderator[usergroupid] == $s_usergroup)||($s_usergroup==6)) { $starsgif = "<img src=\"images/yellowstar.gif\" border=\"0\" width=\"10\" height=\"9\">"; } else { $starsgif = "<img src=\"images/bluestar.gif\" border=\"0\" width=\"10\" height=\"9\">"; } if ($userpostcount > 1999) { $stars .= $starsgif . $starsgif . $starsgif . $starsgif . $starsgif; } elseif ($userpostcount > 999) { $stars .= $starsgif . $starsgif . $starsgif . $starsgif; } elseif ($userpostcount > 399) { $stars .= $starsgif . $starsgif . $starsgif; } elseif ($userpostcount > 99) { $stars .= $starsgif . $starsgif; } elseif ($userpostcount > 19) { $stars .= $starsgif; } if ($stars == "") { $stars .= "<br>"; } else { $stars .= "<br><br>"; } // - Stars Hack |
#10
|
|||
|
|||
![]()
Edit the postbit template and put $stars where you want them to appear.
|
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|