Quote:
Originally Posted by Vegetrunks
I have the same problem...
|
Ok, I see that promotion system must be edited manually by vbexperience_level_XXX.xml file.

But, how I "freeze" promotion for others usergroup (moderator and similar) like administrator?
Phalynx, I believe in you.
EDIT
I try to replace in
class_xperience.php this code
PHP Code:
if ($level_current['usergroupid']<>0 AND $user['usergroupid']<>$level_current['usergroupid'] AND $user['usergroupid']<>6)
with this
PHP Code:
if ($level_current['usergroupid']<>0 AND $user['usergroupid']<>$level_current['usergroupid'] AND $user['usergroupid']<>6 AND $user['usergroupid']<>5)
and seems works correctly: moderators (usergroup 5) are not promoted.
Is it right? Thanks.