vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   -Real- reputation ranking, post/rep ratio rankings System (https://vborg.vbsupport.ru/showthread.php?t=69933)

Borgs8472 09-29-2004 10:31 PM

http://www.wordforge.net/forum/membe...tio&pp=30&ltr=

Excellent!

Still seeing less than 50 post users, but never mind. ;) (another time, no rush)

All I would ask now is that the values are not rounded to 0 decimal places, rather that they display to 2 d.p

So the list instead of reading
2
2
2
2
2
2
2

Woudl read

2.45
2.33
2.17
2.07
1.95
1.89
1.76
1.55

For better differenciation. :)

miz 09-30-2004 12:52 AM

i thought round numbers is nice
but if you think other wise

find this code (Global.php)

PHP Code:

$ratio round($bbuserinfo['reputation'] / $bbuserinfo['posts']) ; 

and replace it with

PHP Code:

$ratio $bbuserinfo['reputation'] / $bbuserinfo['posts'] ; 


thats all

Borgs8472 09-30-2004 09:17 AM

Did that, not sure if it will kick in later, but it's not working now.

Is the number type that the ratio's stored in not compatible with decimals perhaps?

http://www.wordforge.net/forum/membe...o&pp=30&page=0

miz 09-30-2004 01:26 PM

hmmm replace the query

PHP Code:

ALTER TABLE `userADD `ratioINT10 ) DEFAULT '0' NOT NULL 

with

PHP Code:

ALTER TABLE `userADD `ratioVARCHAR10 ) DEFAULT '0' NOT NULL 


Borgs8472 09-30-2004 05:43 PM

Um... what SQL query do I need to kill off the previous entry of ratio so I can put the improved one in?... sorry...

miz 09-30-2004 05:56 PM

Quote:

Originally Posted by wordforge.net
Um... what SQL query do I need to kill off the previous entry of ratio so I can put the improved one in?... sorry...

ALTER TABLE `user` DROP `ratio` ;

phpmyadmin is very easy to use system.. and FREE

Borgs8472 09-30-2004 05:59 PM

Sorry about that, I was coming back to edit my reply, cause I had worked it out at this point. :)

Any chance of displaying to 2 decimal places rather than 8? :D

miz 09-30-2004 06:08 PM

Quote:

Originally Posted by wordforge.net
Sorry about that, I was coming back to edit my reply, cause I had worked it out at this point. :)

Any chance of displaying to 2 decimal places rather than 8? :D


ok do this

Find :
PHP Code:

if (($bbuserinfo['userid']) AND ($bbuserinfo['reputation']) AND ($bbuserinfo['posts']))  { 

After Add :
PHP Code:

function round_to_penny($amount){
  
   
$string = (string)($amount 100);

   
$string_array split("\."$string);
  
   
$int = (int)$string_array[0];
  
   
$return $int 100;
  
   return 
$return;



Find :

PHP Code:

$ratio round($bbuserinfo['reputation'] / $bbuserinfo['posts']) ; 

Replace with

PHP Code:

$ratio round_to_penny($bbuserinfo['reputation'] / $bbuserinfo['posts']) ; 

should work, update me...

Borgs8472 09-30-2004 10:00 PM

Woo!

:D

Of course, I have to wait for the other users to log in and correct their value, but all is good. :D

dune 10-01-2004 01:03 AM

For someone to call this a "Real" reputation ranking system indicates a very poor understanding of how the built-in reputation system is supposed to work. It does require a little extra to effort to understand. But dumbing it down to a score based solely on post count is juvenile...

Sorry, I just think it's an insult to the rep system.


All times are GMT. The time now is 09:16 PM.

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.01245 seconds
  • Memory Usage 1,756KB
  • 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
  • (8)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)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