Reputation system

JedoChristo

Paragon
Joined
May 10, 2008
Messages
1,642
Reaction score
4
FP$
784
Can anyone point me out to a working phpBB Reputation system MOD that is currently perfectly working for them?

Thanks for the help!
 
Wow I never knew ABD meant abandoned. I just learned something! I don't like automods.
 
I got it all working it alright!

Thanks

BTW automod worked for the reputation MOD 😉
 
Gamrpro said:
Wow I never knew ABD meant abandoned. I just learned something! I don't like automods.

Being Afrikaans I NEVER would have quest that ABD stands for abandoned. :idea: Learned something new today.
 
Here's a download link http://www.phpbb-id.com/customise/mod/user_reputation_points/

By the way it's abandon because the author is deceased.

and some fix code with install xml
in includes/function user.php...

in this section code, you won't find that code
Code:
// Those are group-only attributes
	$group_only_ary = array('group_receive_pm', 'group_legend', 'group_message_limit', 'group_max_recipients', 'group_founder_manage');

this the new...

find
Code:
foreach ($attribute_ary as $attribute => $type)
   {
      if (isset($group_attributes[$attribute]))

add after
Code:
// idiotnesia wuz here - user rep point
   $attribute_ary['group_reputation_power'] = 'int';
   $group_only_ary[] = 'group_reputation_power';
// end
 
Back
Top Bottom