Quote:
Originally Posted by daticus
go to the functions_vbookie.php file, open it and edit all the SQL queries that say
PHP Code:
case 'ebux':
$q = "SELECT username, ebux AS cash FROM " . TABLE_PREFIX . "user ORDER BY cash DESC LIMIT 5";
break;
replace the "ebux" part with "vbbux" like this:
PHP Code:
case 'ebux':
$q = "SELECT username, vbbux AS cash FROM " . TABLE_PREFIX . "user ORDER BY cash DESC LIMIT 5";
break;
There's like 4 to 6 entries like that, don't replace "case 'ebux'" though, leave that alone.
|
Cool, thanks for the quick response. I try it tommorrow, too tired for that right now.