because in mucoins.php on usercp page modules u have this..
Code:
$objetivo = mssql_query("SELECT ".MU_COINS_COLUMN." FROM ".MU_COINS_TABLE." WHERE ".MU_COINS_USERID_COLUMN." = '$user_auth_id'");
while($resultado = mssql_fetch_assoc($objetivo))
{
echo $resultado[MU_COINS_COLUMN];
Change to
Code:
$objetivo = mssql_query("SELECT ".MEMB_CREDITS." FROM ".MEMB_INFO." WHERE ".memb___id." = '$user_auth_id'");
while($resultado = mssql_fetch_assoc($objetivo))
{
echo $resultado[memb___id];
Im not really good with mssql codes but u need to change that in that .php to read correctly and u will fix it