Im not sure if that work as i use 2 queries in the full plugin script is:
PHP Code:
if ($vbulletin->userinfo['userid'] !== $threadinfo['postuserid'])
{
$query = $db->query_read("SELECT reputation FROM user WHERE userid =" . $threadinfo['postuserid']) or die(mysql_error());
while($row = mysql_fetch_array( $query )) {
$OPRep = $row['reputation'];
$OPRepPlus = $OPRep+1; }
$vbulletin->db->query_write("UPDATE user SET reputation=".$OPRepPlus." WHERE userid=".$threadinfo['postuserid']) or die (mysql_error());
$query2 = $db->query_read("SELECT reputation FROM user WHERE userid =" . $vbulletin->userinfo['userid']) or die(mysql_error());
while($row2 = mysql_fetch_array( $query2 )) {
$RUser = $row2['reputation'];
$RUserMinus = $RUser-1; }
$vbulletin->db->query_write("UPDATE user SET reputation=".$RUserMinus." WHERE userid=".$vbulletin->userinfo['userid']) or die (mysql_error());
}
else
{
}
--------------- Added [DATE]1489852566[/DATE] at [TIME]1489852566[/TIME] ---------------
AHHHH it f*cking works!! You absolute legend! Do you make music? I'll give you a privileged account haha!
--------------- Added [DATE]1489852778[/DATE] at [TIME]1489852778[/TIME] ---------------
When i did it for the -1 part it worked great but when i adapted to the +1 part it give me the same database error as earlier ^^
PHP Code:
if ($vbulletin->userinfo['userid'] !== $threadinfo['postuserid'])
{
$OPRepPlus = $vbulletin->userinfo['reputation'] + 1;
$vbulletin->db->query_write("UPDATE user SET reputation=".$OPRepPlus." WHERE userid=".$threadinfo['postuserid']) or die (mysql_error());
$RUserMinus = $vbulletin->userinfo['reputation'] - 1;
$vbulletin->db->query_write("UPDATE user SET reputation=".$RUserMinus." WHERE userid=".$vbulletin->userinfo['userid']) or die (mysql_error());
}
else
{
}
--------------- Added [DATE]1489853144[/DATE] at [TIME]1489853144[/TIME] ---------------
PHP Code:
$vbulletin->userinfo['reputation']
I think i see the problem. This line grabs the replying member's reputation. I need to find the thread starter's reputation.
--------------- Added [DATE]1489853318[/DATE] at [TIME]1489853318[/TIME] ---------------
It's deducting -1 from thread starter's reputation instead of +1