vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   [release v2] my stars hack (adm/smod/mod/user) (https://vborg.vbsupport.ru/showthread.php?t=12653)

03-29-2001 10:00 PM

ok, this is the hack i use.
it makes difference on per user/mod/super mod/admin basis.
You can customize it as you like.

If the user has below than X msgs, he get an empty star.
If the user reach X msgs, he will get a special star which means he reach the max :))

You'll need six images,so.
[star.*.gif]
star.no.gif // the empty one
star.user.gif
star.mod.gif
star.supermod.gif
star.admin.gif
star.max.gif //the special one


Code:

<?php
  // very basic stars hack by freddie
  $sh = 12; //height of the stars
  $sw = 11; //width of the stars
  $starposts = 20; // Number of posts to give a new star
  $maxstars = 10; // Maximum stars per line
  $maxtotalstars = 20; // Maximum stars to give
  $maxmsgs = $starposts*$maxtotalstars;
 
  unset($stars);

  // Everyone else
  if ($post[usergroupid]==6)
    //admins
      $starsgif = '<img src="images/star.admin.gif" border=0 width='.$sw.' height='.$sh.' alt="This star means '.$starposts.' messages">';
  elseif ($post[usergroupid]==5)
    //supermods
      $starsgif = '<img src="images/star.supermod.gif" border=0 width='.$sw.' height='.$sh.' alt="This star means '.$starposts.' messages">';
  elseif ($post[usergroupid]==7)
    //mods
      $starsgif = '<img src="images/star.mod.gif" border=0 width='.$sw.' height='.$sh.' alt="This star means '.$starposts.' messages">';
  else
    //normalusers
      $starsgif = '<img src="images/star.user.gif" border=0 width='.$sw.' height='.$sh.' alt="This star means '.$starposts.' messages">';

  $starsmaxgif = '<img src="images/star.max.gif" border=0 width='.$sw.' height='.$sh.' alt="This user has more than '.$maxmsgs.')">';

  $numstars = intval($post[posts] / $starposts);
  $starcount = 0;
  for ($x=0; $numstars>0 && $x<$numstars ;$x++) {
      if ($x == $maxtotalstars-1) {
      $stars .= $starsmaxgif;
      break;
      }
    $stars .= $starsgif;
    $starcount++;
    if ($starcount == $maxstars) {
      $stars .='<br>';
      $starcount = 0;
    }
  }

  if (!$stars) {
    $stars = '<img src="images/star.no.gif" border=0 width='.$sw.' height='.$sh.' alt="This user has just arrived.">';
  }

?>

to use it, include the code where you want, in the postbit template.

finally, here are my stars.

hope this is useful :D

03-30-2001 08:57 AM

ops.... i forgot to give credit to freddie for the original code.... silly me :)

i've just create a complete package to be sure the code will not mess up.

cya.

03-30-2001 09:02 AM

hey, any chance ya can merge this with tubedogg's star hack?

http://www.vbulletin.com/forum/showt...threadid=12648

03-30-2001 04:46 PM

it's a totally different approach...
mine is a hack "as is", tubedogg's one has cp integration and other features...

03-30-2001 05:51 PM

I want the CP intergration!
As does alot of people!

03-30-2001 05:56 PM

i pasted the code in to the postbit template and i get nothing back...

here is my postbit template:
Code:

fixed now so i am cleaning this thread up some
i just get the php stuff back when i do a view source on the html it generates??? why? do i need to put the php tags @ the top/bottom??

03-30-2001 06:01 PM

sorry, i was my fault
i was in a hurry :)

save the code as a file, in the main forum dir,eg. stars.php,
then in the head of your showthread.php file, right under require global.php,add

include('stars.php');



and in the postbit simply insert $stars

:D
hope it helps.

03-30-2001 06:11 PM

:D

now it makes sense... thanks... except everybody has one blank star... hmm... time to debug and figure out why...

03-30-2001 07:03 PM

Stars (or ranks) will officially make their debut in version 2.1. I will try to create something as diverse and feature rich as possible.

03-30-2001 07:06 PM

Quote:

Originally posted by freddie
Stars (or ranks) will officially make their debut in version 2.1. I will try to create something as diverse and feature rich as possible.
:)

sounds great... in the meantime.. any idea why the if statment in the above code doesn't work for me... i am using 2.0b3


All times are GMT. The time now is 10:00 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.01264 seconds
  • Memory Usage 1,737KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete