vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Enhanced Reputation Given Checks (https://vborg.vbsupport.ru/showthread.php?t=101841)

Paul M 12-20-2005 07:54 PM

Nope.

Hastin 12-22-2005 08:23 PM

Hey Paul,

I've got a question: Is there anyway to add to the plugins to make my Super Moderators also get the 'Admin' rep. amount? I want all of my Mods/Admins to have the same amount of power, and our users to have less power.

Zenith 01-24-2006 07:34 AM

I just enabled rep on a forum I've had up for 4 or 5 years. Had a lot of clowns deliberately searching back through year old and older threads taking rep from people they don't like. This hack solved my problem. Thanks.

kuro 01-25-2006 07:23 AM

Hello

I downloaded it and installed it,
reppower that setting is bad becomes 0.

reppower is displayed commonly when I turn off plug in.

If there is a bad place, please teach it

ver3.5.3
Enable User Reputation system yes
Default Reputation 10
Number of Reputation Ratings to Display 50
Administrator's Reputation Power 10
Reputation Power Cap 5
Higher Reputation Forum List 2,3,4,5,6,8,9,10
Higher Reputation Multiply Factor 2
No Reputaion Forum List 12
Open Threads Limit 0
Closed Threads Limit 0
Negative Reputation Multiply Factor 0.5
Require Reputation Comment no
Register Date Factor 365
Post Count Factor 1
Reputation Point Factor 20
Minimum Post Count 1
Minimum Reputation Count 1
Daily Reputation Clicks Limit 10
Reputation User Spread 20

It is the first time that I use a plug in system.
Is other necessary besides this?

ps.
I am weak in English.
Please understand that it is hard to read.
sorry
:surprised:

Paul M 01-25-2006 08:11 AM

Sorry, I don't follow what your problem is. Those settings all look fine.

kuro 01-26-2006 11:24 AM

Thank you for a reply.
I try to do my best by oneself a little more.

amadergaan 02-01-2006 01:15 AM

This is an awesome plugin....Lately there have been too much abuse in my forum with URS...and i wanted to have some more options....this is just perfect...

thanks man!

sinaluna 02-08-2006 04:09 AM

Quote:

Originally Posted by kuro
Hello

I downloaded it and installed it,
reppower that setting is bad becomes 0.

reppower is displayed commonly when I turn off plug in.

If there is a bad place, please teach it

I have the same problem. I am working in version 3.5.3 and have two boards. It works perfectly in one board. In the other board, the reputation power goes to zero.

I can only assume it has something to do with a different hack as that is the only difference in the two boards. I've not been able to find the exact problem yet.

Paul M 02-08-2006 04:14 AM

Well if you want me to have a look, pm me a user with admin access.

sinaluna 02-14-2006 06:17 PM

Thanks Paul, but this is not for my private board but a commercial one I admin, so I can't allow anyone else in. :(

I did find what was causing the error, though not a fix.

If I say NO to "Can Leave Negative Reputation" in the Usergroups, then the rep points go to zero. Change that to YES and everything works again.

I'd rather my users not give negative rep.

Any ideas?

sinaluna 02-14-2006 08:45 PM

Paul,

I looked at the plugin code for "Reputation Checks (2)" and saw this line (line 12):

Code:

if (!($perms['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['cannegativerep'])) $reppower = 0;
This looks like it says that if you cant give negative rep, set your rep power to ZERO. Which is exactly my problem. My guess is that if you moved check down to the end of the plugin, it would work as you wanted it to.

Maybe something like this:
Code:

// Negative Reputation //
if ($reputation != 'pos')
{
    if (!($perms['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['cannegativerep']))
    {
   
        $reppower = 0;
    } else {
        $reppower *= -1;
        $reppower *= $vbulletin->options['negrepfactor'];
}

For now, commenting out the line I mentioned above fixes my problems. Thanks for the cool hack!

Paul M 02-14-2006 10:30 PM

sinaluna - yes, you are right, that's a bug which I have fixed.

MythoLogy 02-15-2006 08:59 PM

*clicks install - exactly what I needed for guild families.

BigTrucK72 02-28-2006 06:15 PM

Does this hack give a user the ability to choose the number of points or is it a fixed total as dictated by admincp setting?

Paul M 02-28-2006 06:57 PM

Sorry, I don't really understand what you are asking.

BigTrucK72 02-28-2006 07:07 PM

Nevermind... doesn't look like there is an option for what I was asking...

On some forums the user can select how many points to give from a drop down menu up to the total rep points the user has earned. This way post scores can better reflect the content rather than some pre-determined number.

Edmund Tan 03-02-2006 10:01 AM

Hi, where do I upload the XML doc to my admincp folder? Exactly which folder? I am using 3.5.3

Edmund Tan 03-02-2006 10:08 AM

Quote:

Originally Posted by Michelle
I wonder... Is it ignorance or stupidity? https://vborg.vbsupport.ru/external/2006/03/25.gif







(sorry mates, couldn't resist the temptation :p)

Sorry i really do not know. You want to laugh I cant stop you.

Lea Verou 03-02-2006 10:13 AM

You don't upload it. You go to the plugin section in your admin control panel and import it, either as a product or as a plugin (I don't know if this is a plugin or a product as I don't use the modification, try both it does no harm). NO ftp involved.
Have a nice day. :)

Edmund Tan 03-02-2006 10:18 AM

Quote:

Originally Posted by Michelle
You don't upload it. You go to the plugin section in your admin control panel and import it, either as a product or as a plugin (I don't know if this is a plugin or a product as I don't use the modification, try both it does no harm). NO ftp involved.
Have a nice day. :)

thanks. btw, i can accept your comments for my pure ignorance for which i really am still learning. Plain stupidity? I do not need mockery comments from you.

Nathan2006 03-08-2006 12:53 PM

Thank you these will come in useful :)

Install*

m_k 03-15-2006 06:00 AM

<clicks install>

just what I needed :-)

thanks for the hack

slank 03-28-2006 02:44 PM

excellent idea...nice work

Dsyn11 03-30-2006 11:48 PM

Installed! I posted a request, but maybe you can work with it:

I'd like to be able to have reputation POWER expire after X amount of time upon receiving it. This way people don't hoard them.

rareclownfish 04-03-2006 02:35 AM

What if you are using one of the old hacks for this, will it have any effects on it?

rareclownfish 04-03-2006 02:58 AM

installed thanks

masterross 04-06-2006 08:41 AM

looks like very useful hack i'll try it right now!

zweefer 04-06-2006 09:36 PM

Thanks, once again... This is one of several of your masterpieces that fit just what i need on my forum.
Please keep up the great work!

GoTTi 04-26-2006 03:36 AM

i entered a forum id to disable the use of reps but i still see the rep icon in the post bit. any ideas?

GoTTi 04-26-2006 03:37 AM

nevermind, id prefer the rep icon not be shown in the forum that i specify also. the icon shows but gives a error saying rep cant be left

Paul M 04-26-2006 04:22 AM

Quote:

Originally Posted by GoTTi
nevermind, id prefer the rep icon not be shown in the forum that i specify also. the icon shows but gives a error saying rep cant be left

I'm afraid that's not the way this works - and will never happen with this hack. :)

PersianImmortal 06-06-2006 12:40 PM

Great mod, very helpful thanks :)

I wonder if there's any way you could add the ability to specify different Reputation Quotas for each usergroup - in particular Moderators and Super Moderators.

That is, would it be possible to specify the total amount of Reputation points per day that members of a particular usergroup can have? At the moment VB only allows Admins to have a different Rep quota. I find that my moderators/super moderators need more than the default quota that all other users get (3 points on my forum).

FLMom 06-06-2006 01:25 PM

Thank you so much for all of your hard work!

/me clicks install

Sculli 06-16-2006 03:24 AM

Nice mod, thank you very much.
What would I need to change to only require a comment for negative feedback?

Milez 07-18-2006 08:58 AM

I would love to install this but it is a bit limited in its current form for me. A quick suggestion:

Reputation Power Cap - Allow this to be different for different groups. This way an Admin or mod can have more Rep power than a normal user.

Also do you have plans to port this to vB3.6?

Paul M 07-18-2006 04:59 PM

Quote:

Originally Posted by Milez
Also do you have plans to port this to vB3.6?

Yes, but no functionality will be added.

lazytown 08-09-2006 06:49 AM

Any idea on when we may see this for 3.6? This one is necessary for me to upgrade. Thanks for the great work!

-vissa

lazytown 08-15-2006 01:55 AM

Paul mentioned to me via PM that this should work on 3.6 without modification (hope it's ok to repeat that). Has anyone tested it? I won't be upgrading to 3.6 until I am sure this will work.

thanks,
-vissa

Paul M 08-15-2006 01:57 AM

/me has tested it (on his 3.6 test site) ......

Roxie 08-15-2006 02:07 AM

It works fine on my site running 3.6 Gold. :)


All times are GMT. The time now is 05:57 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.01277 seconds
  • Memory Usage 1,810KB
  • 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
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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