Quote:
Originally Posted by phpdevrus
Modify the phrase in admincp. Since the mod is fully phrases you will be able to find it there. Just do a search for richest people and it should come up. this will only change the text.
|
thanks friend
i solved the problem
functions_vbookie.php
find
"user ORDER BY cash DESC LIMIT
30";
PHP Code:
function vbookie_get_richest()
{
global $vbulletin;
switch ($vbulletin->options['vbookiecash'])
{
case 'vcash':
$q = "SELECT username, vbookie_cash AS cash FROM " . TABLE_PREFIX . "user ORDER BY cash DESC LIMIT 30";
break;
case 'ucash':
$q = "SELECT username, ucash AS cash FROM " . TABLE_PREFIX . "user ORDER BY cash DESC LIMIT 30";
break;
case 'ebux':
$q = "SELECT username, ebux AS cash FROM " . TABLE_PREFIX . "user ORDER BY cash DESC LIMIT 30";
break;
case 'custom':
($hook = vBulletinHook::fetch_hook('vbookie_get_richest')) ? eval($hook) : false;
}