Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard

Reply
 
Thread Tools
Extended Reputation Display Details »»
Extended Reputation Display
Version: 2.14, by Paul M Paul M is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 3.6.x Rating:
Released: 07-30-2006 Last Update: 09-08-2007 Installs: 383
Uses Plugins Auto-Templates
Additional Files Translations  
No support by the author.

This modification is no longer available or supported.

This hack extends the existing reputation display system from just the light/dark green pips to green and golden pips, and then golden stars as the pips limit is reached.

The dark green pips are followed by light green pips, which are then followed by 'golden' pips. When the limit these can display is reached, the display is prefixed by a golden Star, and started again. If your reputation is zero then the neutral grey pip is displayed. Negative reputations are displayed in a similar manner using light and dark red pips and stars.

Each time you 'lap' the limit of the pips display, another star is added. The number of stars in unlimited. The number and value of the pips in each group of pips is defined by six settings in the vboptions > reputation options. A line break can be inserted after the stars. The extended display system can be enabled/disabled in the options.

Just follow the install instructions in the zip file to install this product.


History:

v2.10 : First Release for vb 3.6
v2.11 : Dependancies updated for 3.6.0 Gold.
v2.12 : Updated for Version Checking.
v2.13 : Dependancies Updated (not released).
v2.14 : Rogue setting in XML file removed.

Show Your Support

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

Comments
  #112  
Old 06-02-2007, 04:02 PM
katie hunter's Avatar
katie hunter katie hunter is offline
 
Join Date: May 2007
Posts: 533
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi, I installed this xml, i mean uploaded it but shouldn't there be extra options in the user reputation in my admin cp ? like these for example ?

I don't see any additional options that were added like for example set 2 green bars = may be 25 rep points etc.. ?

enable system
default rep
reutation undefined
number of reputation ratings to display
adminisartors reputation power
Regsister date factor
Reply With Quote
  #113  
Old 06-02-2007, 04:28 PM
deezelpope deezelpope is offline
 
Join Date: Feb 2007
Posts: 1,272
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<i>It's under vb options.</i>
Reply With Quote
  #114  
Old 06-02-2007, 09:40 PM
katie hunter's Avatar
katie hunter katie hunter is offline
 
Join Date: May 2007
Posts: 533
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

But I had this mod before and for some issues i lost it etc.. It had an extra option under user reputation where i can set how many gem = how many points ? Where can i find that mod, i find this but it is deleted , the download file .
Reply With Quote
  #115  
Old 06-05-2007, 10:45 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If installed correctly then the options should appear.
Reply With Quote
  #116  
Old 06-07-2007, 07:44 PM
CyberRanger's Avatar
CyberRanger CyberRanger is offline
 
Join Date: Mar 2004
Posts: 1,319
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Paul M View Post
10 Stars ???

I've never seen anyone get that far, the highest we have is four, and I'm thinking maybe I'll need to line break at five sometime in the not to distant future. So yes, such a thing may make it into the code at some point - but as for 10 stars - maybe you need to review your point value settings slightly.
I ran into this problem on my site. With the exisiting plugin, we were set to have 5 of each pip which translated into a total of 15 stars being displayed. That was too many plus it didn't show more if the user earned more reputation.

I modified the plugin so that if the user gets more than x (say 10) stars, after the stars a [+x] will appear to show how many stars above 10 the user has earned. The attachment shows a real life example of what it looks like.

I made these changes to the plugin:

look for this code:
PHP Code:
                $repa 'green';
                
$repb 'greenh';
                
$repc 'gold';
                
$repx 'goldstar';
            }
            
$count $linemax_cnt
REPLACE the $count = $linemax_cnt; with
PHP Code:
                // next lines from Brent, begin section I
                        
$goldstar_num floor($repval/$linemax_val);
                        
$goldstar_show 10;

                          if (
$goldstar_num $goldstar_show)
                          {
                            
$count $goldstar_num;
                            
$extra 0;
                          } else {
                            
$count $goldstar_show;
                            
$extra $goldstar_num $goldstar_show;
                          }
                        
// end of Brent section I 
AFTER:
PHP Code:
            while ($count and $repval $linemax_val
            {
                
$count -= 1;
                
$repval -= $linemax_val;
                
$posneg $repx;
                
$linemax_exd += 1;
                eval(
'$post[\'reputationdisplay\'] .= "' fetch_template('postbit_reputation') . '";');
            } 
ADD:
PHP Code:
    // added by Brent to show [x] after medals
            
if ($extra 0)
            {
                
$post['reputationdisplay'] .= "&nbsp;[+".$extra."]";
                
$repval -= $extra $linemax_val;
            }
              
// end of Brent change 2 
Change $goldstar_show to how many stars you want to display.
Reply With Quote
  #117  
Old 07-23-2007, 12:20 PM
ePrOmD's Avatar
ePrOmD ePrOmD is offline
 
Join Date: Aug 2006
Location: jump! | argentina
Posts: 38
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hi Paul! , i used to have this hack installed in my VB 3.6.4, recently we update to 3.6.7, after the update, we uninstall all hacks.
now i install the hack again. but it doesn´t work :S
Reply With Quote
  #118  
Old 07-23-2007, 04:14 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It works on any 3.6 version, so you must have a local problem.
Reply With Quote
  #119  
Old 07-30-2007, 01:50 AM
ePrOmD's Avatar
ePrOmD ePrOmD is offline
 
Join Date: Aug 2006
Location: jump! | argentina
Posts: 38
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

tks paul, for answering my post. actually is working without problems! :tup:
Reply With Quote
  #120  
Old 08-01-2007, 12:55 AM
RockStrongo RockStrongo is offline
 
Join Date: Jul 2007
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is the first mod I've installed and I love it! On my forum the users think that reputation is more powerful than a Pulitzer Prize and now that they have a visual representation of their cyber-greatness then it just makes the forum that much more fun!

Thanks!
Reply With Quote
  #121  
Old 08-04-2007, 10:40 AM
adsense-id adsense-id is offline
 
Join Date: Aug 2007
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

installed, but I can see any icon display.
Reply With Quote
Reply

Thread Tools

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 07:55 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.16716 seconds
  • Memory Usage 2,325KB
  • 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
  • (4)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)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
  • postbit_imicons
  • 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