in the new version of LA 1.2.0
there is no more session.php in include.php
thats why error occurred.
this is how to integrate living avatar with vbcredit(on living avatar previous version)
PHP Code:
================================
File: living_avatars/index.php
================================
FIND:
--------------------------------
$points_remaining = $userinfo['points'] - $item[cost];
--------------------------------
ADD BELOW:
--------------------------------
$DB->query("UPDATE " . $GLOBALS['tableprefix'] . "user SET credits = " . $points_remaining . " WHERE userid = " . $userinfo['userid']);
================================
File: living_avatars/includes/session.php
================================
FIND:
--------------------------------
$userpostcount = $DB->query_first("SELECT posts AS value FROM " . $foruminfo['table_prefix'] . "user WHERE userid = $userinfo[userid]");
--------------------------------
REPLACE WITH:
--------------------------------
$userpostcount = $DB->query_first("SELECT credits AS value FROM " . $foruminfo['table_prefix'] . "user WHERE userid = $userinfo[userid]");
--------------------------------
FIND:
--------------------------------
$userinfo['points'] = $userpostcount['value'] - $userinfo['points_spent'];
--------------------------------
REPLACE WITH:
--------------------------------
$userinfo['points'] = $userpostcount['value'];
================================
can you try to update it subduck?