Ok, I figured out how to fix the error with giving other users custom titles.
Look for:
PHP Code:
$checkcost=$contest[costs];
Change to:
PHP Code:
$checkcost=round($contest[costs] * ($costpercent[storecost]/100));
Also, a little clean up. You could/should declare the $costpercent variable as a global.
Look for:
PHP Code:
global $points, $usertitle, $username, $userid, $storename, $pointname, $glow, $italic;
Change to:
PHP Code:
global $points, $usertitle, $username, $userid, $storename, $pointname, $glow, $italic, $costpercent;
then look for:
PHP Code:
$username=$user++++[username];
and add BELOW:
PHP Code:
$costpercent=$DB_site->query_first("SELECT storecost FROM usergroup WHERE usergroupid=$bbuserinfo[usergroupid]");
then remove all other instances of:
PHP Code:
$costpercent=$DB_site->query_first("SELECT storecost FROM usergroup WHERE usergroupid=$bbuserinfo[usergroupid]");
since they're not needed. I hope that helps.