Well I found class_dm_user.hp thanks to Andreas, but after taking a look I couldn't find anything relevant to defining whether or not the post is a new thread or just a post. While functions_newpost.php does contain the variable $type which seems to store thread or reply it allways adds 10 (does the else) if I change:
PHP Code:
$this->registry->db->query_write("UPDATE " . TABLE_PREFIX . "banners SET available = available + 10 WHERE userid = " . $this->registry->userinfo['userid']);
To:
PHP Code:
if ($type == 'thread') {
$this->registry->db->query_write("UPDATE " . TABLE_PREFIX . "banners SET available = available + 100 WHERE userid = " . $this->registry->userinfo['userid']);
} else {
$this->registry->db->query_write("UPDATE " . TABLE_PREFIX . "banners SET available = available + 10 WHERE userid = " . $this->registry->userinfo['userid']);
}