PDA

View Full Version : Rep points


afx
05-17-2005, 03:13 PM
I see that like 50% of the rep points I get are the grey ones because people dont have I think its 50 posts or more. Can we drop that down a bit cause alot of people dont post alot like Glock in the lounge. Just a suggestion!

kel_be
05-17-2005, 03:40 PM
From what I can tell, it's vBulletin, not SlickDeals.net with the pre-set conditions:
Link (http://forums.slickdeals.net/t83198.html?&page=3&highlight=Rep+Points)

xcgames
05-17-2005, 06:48 PM
<?php
/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 3.0.7 - CAT Team
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000–2005 Jelsoft Enterprises Ltd. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # Nullified By CAT Team # ||
|| #################################################################### ||
\*======================================================================*/

error_reporting(E_ALL & ~E_NOTICE);

// ## Function takes an array from fetch_userinfo and an array from cache_permissions()
// ## Returns the user's reputation altering power (for positive)
function fetch_reppower(&$userinfo, &$perms, $reputation = 'pos')
{
global $vboptions;

// User does not have permission to leave negative reputation
if (!($perms['genericpermissions'] & CANNEGATIVEREP))
{
$reputation = 'pos';
}

if (!($perms['genericpermissions'] & CANUSEREP))
{
$reppower = 0;
}
else if ($perms['adminpermissions'] & CANCONTROLPANEL AND $vboptions['adminpower'])
{
$reppower = iif($reputation != 'pos', $vboptions['adminpower'] * -1, $vboptions['adminpower']);
}
else if (($userinfo['posts'] < $vboptions['minreputationpost']) OR ($userinfo['reputation'] < $vboptions['minreputationcount']))
{
$reppower = 0;
}
else
{
$reppower = 1;

if ($vboptions['pcpower'])
{
$reppower += intval($userinfo['posts'] / $vboptions['pcpower']);
}
if ($vboptions['kppower'])
{
$reppower += intval($userinfo['reputation'] / $vboptions['kppower']);
}
if ($vboptions['rdpower'])
{
$reppower += intval(intval((TIMENOW - $userinfo['joindate']) / 86400) / $vboptions['rdpower']);
}

if ($reputation != 'pos')
{
// make negative reputation worth half of positive, but at least 1
$reppower = intval($reppower / 2);
if ($reppower < 1)
{
$reppower = 1;
}
$reppower *= -1;
}
}

return $reppower;
}

// ###################### Start getreputationimage #######################
function fetch_reputation_image(&$post, &$perms)
{
global $vboptions, $stylevar, $vbphrase;

if (!$vboptions['reputationenable'])
{
return true;
}

$reputation_value = $post['reputation'];
if ($post['reputation'] == 0)
{
$reputationgif = 'balance';
$reputation_value = $post['reputation'] * -1;
}
else if ($post['reputation'] < 0)
{
$reputationgif = 'neg';
$reputationhighgif = 'highneg';
$reputation_value = $post['reputation'] * -1;
}
else
{
$reputationgif = 'pos';
$reputationhighgif = 'highpos';
}

if ($reputation_value > 500)
{ // bright green bars take 200 pts not the normal 100
$reputation_value = ($reputation_value - ($reputation_value - 500)) + (($reputation_value - 500) / 2);
}

$reputationbars = intval($reputation_value / 100); // award 1 reputation bar for every 100 points
if ($reputationbars > 10)
{
$reputationbars = 10;
}

if (!$post['showreputation'] AND $perms['genericpermissions'] & CANHIDEREP)
{
$posneg = 'off';
$post['level'] = $vbphrase['reputation_disabled'];
eval('$post[\'reputationdisplay\'] = "' . fetch_template('postbit_reputation') . '";');
}
else
{
if (!$post['reputationlevelid'])
{
$post['level'] = $vboptions['reputationundefined'];
}
for ($i = 0; $i <= $reputationbars; $i++)
{
if ($i >= 5)
{
$posneg = $reputationhighgif;
}
else
{
$posneg = $reputationgif;
}
eval('$post[\'reputationdisplay\'] .= "' . fetch_template('postbit_reputation') . '";');
}
}

return true;
}

/*======================================================================*\
|| ####################################################################
|| # Nullified By CAT Team
|| # CVS: $RCSfile: functions_reputation.php,v $ - $Revision: 1.1 $
|| ####################################################################
\*======================================================================*/
?>

XXnarg
05-17-2005, 07:11 PM
Have you ever had a date care about rep points?

Does anyone list rep points on a resume?

Does your mom brag to her friends about how many you have?"My son is a cardiologist." "Irene, did you know that my son has 167 rep points on Slickdeals?" "Oh Stella, you got me there!"When we meet St. Peter, will he care how many rep points we have?

afx
05-17-2005, 08:30 PM
if that were true then why do people play games. Im not saying my life isnt complete without rep points. It was just a suggestion.

iampakky
05-18-2005, 09:37 PM
I see that like 50% of the rep points I get are the grey ones because people dont have I think its 50 posts or more. Can we drop that down a bit cause alot of people dont post alot like Glock in the lounge. Just a suggestion!

I don't think that helps much because you would get 50% more just as others. Economically, this just devalues a point of reputation.

xcgames
05-19-2005, 11:18 AM
Have you ever had a date care about rep points?

Does anyone list rep points on a resume?

Does your mom brag to her friends about how many you have?"My son is a cardiologist." "Irene, did you know that my son has 167 rep points on Slickdeals?" "Oh Stella, you got me there!"When we meet St. Peter, will he care how many rep points we have?

it doesn't matter, as long as he cares.

and what he asked was why half of his points are grey, not 'what good would these points do in the non-slickdeals world'.

vec516
05-19-2005, 11:40 AM
this just devalues a point of reputation.
devalues the point of reputation? there is a value?

XXnarg
05-19-2005, 12:07 PM
it doesn't matter, as long as he cares.

and what he asked was why half of his points are grey, not 'what good would these points do in the non-slickdeals world'.Rep pts. appeared to be a big deal: "Can we drop that down a bit cause alot of people dont post alot like Glock in the lounge." The concern over rep pts. is puzzling, but I understand OP has a right to be concerned about them.

vec516
05-19-2005, 12:37 PM
Rep pts. appeared to be a big deal: "Can we drop that down a bit cause alot of people dont post alot like Glock in the lounge." The concern over rep pts. is puzzling, but I understand OP has a right to be concerned about them.
Why be concerned over rep points? I am confused? If he is that upset then I will give him +2.

justme-
05-19-2005, 12:40 PM
The concern over rep pts. is puzzling, but I understand OP has a right to be concerned about them. Agreed, it's puzzling, but I would argue noone has a right to be concerned about them- they are an intangible counter of a virtual "pat on the back" arbitrarily given to a member for something they have done, have not done, said, or have not said.

The only person with a right to be concerned about them could be concieved to be Mr Slickdeals himself as it's his website. Personally I think they are one of the worst additions to the site- all they have done is create contraversy. The intention, while honerable, was and is flawed by basic human nature which is demonstrated over and over in posts like this.

vec516
05-19-2005, 12:50 PM
Agreed, it's puzzling, but I would argue noone has a right to be concerned about them- they are an intangible counter of a virtual "pat on the back" arbitrarily given to a member for something they have done, have not done, said, or have not said.

The only person with a right to be concerned about them could be concieved to be Mr Slickdeals himself as it's his website. Personally I think they are one of the worst additions to the site- all they have done is create contraversy. The intention, while honerable, was and is flawed by basic human nature which is demonstrated over and over in posts like this.

This is actually the second coming of rep points. Correct me if i'm wrong, but from what I was lead to believe was that the original system allowed negative reps to be handed out. This thread would have been a prime candidate for the old rep system. :lol:

moey
05-19-2005, 01:19 PM
Wohoo.. -1 rep point for this thread.. Does it really matter to anyone what there rep points are or the number of posts they have made. You still get stuck reading garbage. See case in point you read my post and are probably going to reply.

vec516
05-19-2005, 01:24 PM
Wohoo.. -1 rep point for this thread.. Does it really matter to anyone what there rep points are or the number of posts they have made. You still get stuck reading garbage. See case in point you read my post and are probably going to reply.
I wasn't going to reply, but I had to after that remark :lol:

Aluvus
05-19-2005, 04:57 PM
This is actually the second coming of rep points. Correct me if i'm wrong, but from what I was lead to believe was that the original system allowed negative reps to be handed out. This thread would have been a prime candidate for the old rep system. :lol:
Yes, it did. That was one of its worse aspects.

Geeke19
05-19-2005, 06:52 PM
well I see somebody cried about my post and it was remove from this thread.

LucaBella
05-19-2005, 08:14 PM
well, what was your post about?

kcb
05-20-2005, 02:53 AM
I have none, so quityer... JK. Sorry, had to lighten up the thread a bit...

vec516
05-20-2005, 07:27 AM
well I see somebody cried about my post and it was remove from this thread.
What could have been so bad Geeke?

arjunsr
05-20-2005, 10:29 AM
IDK, there are no deleted posts in the threads :confused:

Anonymouse
05-29-2005, 07:30 PM
Do like I do, give a rep point for a person when it's deserved or "earned" but I ALWAYS give a "huggie" (use the :hug2: smiley for good posts, even if they are just replies). I have recently been adding the following to the bottom of any post where I hand out a "huggie"

_______________________________________________________________________
Join the movement for "huggies" and "slappys" much more reliable than rep points which are cold & unfeeling. Huggies and slappys are emotionally based and give a more accurate depiction of a persons character. Besides, then even the "slappys" crowd could feel they, at least, got SOMETHING. :P
_______________________________________________________________________

afx
05-29-2005, 09:41 PM
Hahah sometimes a huggie is all I need :)

stephie67
05-29-2005, 11:48 PM
Hahah sometimes a huggie is all I need :)
:hug: