Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > General > Member Archives
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Details »»

Version: , by (Guest)
Developer Last Online: Jan 1970 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 08-24-2000 Last Update: Never Installs: 0
 
No support by the author.

Here is an update to my stars hack - this one allows you different colored stars for admins/moderators

edit showthread.php

find:
Code:
$userinfo=$DB_site->query_first("SELECT userid,email,username,usertitle,signature,showemail,homepage,icq,aim,yahoo,joindate,posts FROM user WHERE userid=$userid");
If you have installed the avatar hack, this line will be modified. Just look for ' $userid=$post[userid]; ' and the line listed above will be 3-4 lines below that.

Edit that line listed above and add

Code:
usergroupid,
after the "SELECT" in that line. Make sure there is a space between the word you added and "SELECT". Make sure there is a comma after the word you added and before the next. It looks like this:

Code:
$userinfo=$DB_site->query_first("SELECT usergroupid,userid, (...) etc etr
find:

Code:
$userpostcount=$userinfo[posts];
Add this after it:

Code:
    // --- 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)  // This is a Normal Mod!
     {
        $starsgif = "<img src=\"images/star2.gif\" border=\"0\" width=\"15\" height=\"15\">";
     }
     else if ($s_usergroup==6) // This is an Admin!
     {
        $starsgif = "<img src=\"images/star2.gif\" border=\"0\" width=\"15\" height=\"15\">";
     }
     else if ($s_usergroup==5) // This is a SuperMod!
     {
        $starsgif = "<img src=\"images/star2.gif\" border=\"0\" width=\"15\" height=\"15\">";
     }
     else
     {
        $starsgif = "<img src=\"images/star.gif\" border=\"0\" width=\"15\" height=\"15\">";
     }
     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

You need to supply your own stars names "star.gif" and "star2.gif". "star2.gif" is for admins/moderators. Put them in forums/images.

To modify how many stars correspond to how many posts you will need to change the if ($userpostcount > ..) parts. If you don't want stars, but galagas or such, change the parts that say '$stars .= $starsgif . $starsgif . $starsgif . $starsgif . $starsgif;' to something like '$stars .= (path to my image for x number of posts);'

Edit the postbit template and put $stars where you want them to appear.

[Edited by freddie on 11-04-2000 at 04:56 PM]

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 08-24-2000, 09:15 PM
Guest
 
Posts: n/a
Default

Why not just add the html into custom user titles from the control panel?

~Chris
Reply With Quote
  #3  
Old 08-24-2000, 09:22 PM
Guest
 
Posts: n/a
Default

  • Admns and Mods have custom titles - are you going to monitor their posts to see when they should be given additional stars? What about other users you have given custom titles too? Going to monitor their post count also?
  • Custom User Title Hack - If you installed this hack of mine then you have to use a stars hack if you want automagic stars.
  • It's simple and efficient and didn't you (?) complain about having to change the fieldtype of usertitle as it doesn't hold that much info by default.

I think it is something that should be included by default with vB, with a toggle of course.
Reply With Quote
  #4  
Old 08-24-2000, 10:01 PM
Guest
 
Posts: n/a
Default

OK i see now I was just curious

~Chris
Reply With Quote
  #5  
Old 09-15-2000, 11:50 PM
Guest
 
Posts: n/a
Default

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
Reply With Quote
  #6  
Old 09-15-2000, 11:54 PM
Guest
 
Posts: n/a
Default

Quote:
Originally posted by Tomeeboy
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
hehe borrow them from other forums -> http://www.fanforum.com has them
Reply With Quote
  #7  
Old 09-16-2000, 12:12 AM
Guest
 
Posts: n/a
Default

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 Thanks!

-Tom
Reply With Quote
  #8  
Old 09-16-2000, 12:14 AM
Guest
 
Posts: n/a
Default

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
Then some things in /admin/options.php:

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>
Add this after the "Text that means off. This is used to keep the code language independant.." in the options section.. Around line 600.

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-->
Ok, so you have the option of using a URL for the image, if you want make it an image, make sure to put in the entire image url.
Code:
<IMG SRC = "etc.">
Otherwise you can use text (I just use the star *).

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!
Reply With Quote
  #9  
Old 09-16-2000, 02:32 AM
Guest
 
Posts: n/a
Default

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
-Tom
Reply With Quote
  #10  
Old 09-16-2000, 03:23 AM
Guest
 
Posts: n/a
Default

Edit the postbit template and put $stars where you want them to appear.
Reply With Quote
Reply


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. The time now is 10:52 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04130 seconds
  • Memory Usage 2,285KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (10)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete