Can you provide a plugin for My Points by xuups.com?
This is the orginal plugin woring with xoops news, can you make necessary modification to make it work with AMS? Thanks!
function news_useritems_count($uid, $since) { global $xoopsDB; list($ret) = $xoopsDB->fetchRow($xoopsDB->query("SELECT COUNT(*) FROM ".$xoopsDB->prefix("stories")." WHERE (uid='$uid' AND published > '$since')")); return $ret; } function news_uservotes_count($uid, $since) { global $xoopsDB; list($ret) = $xoopsDB->fetchRow($xoopsDB->query("SELECT COUNT(*) FROM ".$xoopsDB->prefix("stories_votedata")." WHERE ratinguser ='$uid' AND ratingtimestamp > '$since'")); return $ret; }