Nexia.. am no coder but would this edit in the code make the person the referred the user that posted the reply to gain a point also?
Code:
<plugin active="1" executionorder="5">
<title>Thread Reply Points</title>
<hookname>postdata_postsave</hookname>
<phpcode><![CDATA[if (!$this->condition AND $this->fetch_field('userid'))
{
# default value
$amount = ($this->info['thread']['postuserid'] == $this->fetch_field('userid')) ? $this->registry->options['nex_points_hook_postdata_postsave_own'] : $this->registry->options['nex_points_hook_postdata_postsave'];
# add features like permissions based on usergroup or per-forum (modify $amount)
($hook = vBulletinHook::fetch_hook('nex_points_hook_postdata_postsave')) ? eval($hook) : false;
# if the $amount is not disabled due to permissions or value per-forum, continue!
if($amount)
{
$this->dbobject->query_write("
UPDATE " . TABLE_PREFIX . "user
SET nex_points_hand = nex_points_hand + " . $amount . "
WHERE userid = " . $this->fetch_field('userid') . "
SELECT `username`
FROM `" . TABLE_PREFIX . "user`
WHERE `userid` = " . $userinfo['referrerid'] . "
LIMIT 1
UPDATE " . TABLE_PREFIX . "user
SET nex_points_hand = nex_points_hand + " . $amount . "
WHERE userid = " . $userinfo['referrerid'] . "
");
}
}]]></phpcode>