It's very weird, but not even that seems to work. That's odd, because I'm also using:
Code:
($hook = vBulletinHook::fetch_hook('reputation_power')) ? eval($hook) : false;
$reppower *= 2;
return $reppower;
in functions_reputation.php
Of which that works, and is giving every user reputation power of 2. Of which I want for everyone to start off with. But if I even add a if / else like I've done yesterday, or temp-disabled reppower 2 and used your line before and even tried after the return $reppower; (around line 77) code. It refuses to alter/change the rep power of that specific group.
Final code:
Code:
($hook = vBulletinHook::fetch_hook('reputation_power')) ? eval($hook) : false;
if (is_member_of($vbulletin->userinfo, 27)) $reppower = 123;
return $reppower;
Even by disabling all plugins and leave the above usergroup rep power code intact in the php file, doesn't change the usergroups rep power.