|  | 
 
| $cfg['follow_credit']是插件配置里的积分增减值 
 
 复制代码mc_credit_update($_W['member']['uid'], 'credit1', (int)$cfg['follow_credit'] , array(0, '新用户关注,赠送积分'));    //给账户增加积分
$res = mc_credit_update($_W['member']['uid'], 'credit1', -(int)$cfg['follow_credit'] , array(0, '取消关注,扣除积分'));  //扣分
 | 
 |