
Originally Posted by
X_Sarah_X
I was just thinking...
You know where the website checks your level and it decides wether to show the reset button or not depending on your character level?
Shouldn't it be possible to let it search on both your level and your amount of resets?
Like the reset button only shows if your level is the level requirement set in the config AND your resets is NOT equal or bigger than your reset limit set in your config?
I will look into it myself for sure. It should be possible.
easy as pie
open usercp.php
find:
PHP Code:
if ($c['LEV'] >= $_config['ucp_lvl_level'] && )
change into
PHP Code:
if ($c['LEV'] >= $_config['ucp_lvl_level'] && $c[$_config['ucp_lvl_col']] < $_config['ucp_lvl_limit'] )