I didn't have time to do anything fancy but here's the code to do a simple star raiting system based on the number of posts.
First off, go to line 228 of showthread.php and add the following code:
Code:
if($userinfo[posts]>1){
$userstars_count=1;
}
if($userinfo[posts]>24){
$userstars_count=2;
}
if($userinfo[posts]>49){
$userstars_count=3;
}
if($userinfo[posts]>74){
$userstars_count=4;
}
if($userinfo[posts]>100){
$userstars_count=5;
}
for($i;,$i<$userstars_count;,$i++){
$userstars .= "<IMG SRC=\"images/star.gif\" BORDER=0>";
}
(you can easily change how many posts are required to advance a level by changing each if statement).
Upload this file and go to your admin. In the template editor, add the code
Code:
<smallfont>$userstars</smallfont><br><br>
to the
postbit template (you probably will want to put this under the $usertitle line). Save the template and load up any thread, the stars will be there!
You can see this in use at
www.scubaboard.com (the board is new so very few people have more than 1 star). you can also grab my star collection at
www.scubaboard.com/hacks/stars.zip
[Edited by ExtremeFactor on 06-21-2000 at 09:25 PM]