insert similar this:
for reed aticle:
on line 678 in the(components/com_k2/models/item.php) :
if ($view == 'item')
{
@list($item->introtext, $item->fulltext) = explode('{K2Splitter}', $item->text);
// aup start
$api_AUP = JPATH_SITE.DS.'components'.DS.'com_alphauserpoints'.DS.'helper.php';
if ( file_exists($api_AUP))
{
require_once ($api_AUP);
AlphaUserPointsHelper::newpoints( 'plgaup_k2_topic_read' );
}
// aup end
------------------------------------------
for rating:
in line 795 item.php :
echo JText::_('K2_THANKS_FOR_RATING');
// aup start
$api_AUP = JPATH_SITE.DS.'components'.DS.'com_alphauserpoints'.DS.'helper.php';
if ( file_exists($api_AUP))
{
require_once ($api_AUP);
AlphaUserPointsHelper::newpoints( 'plgaup_k2_topic_rating' );
}
// aup end
----------------------------------