This cool hack is intregate photoplog with vbplaza/vbbux 1.5.8, if user upload image to your photoplog will get vbplaza/vbbux points
in upload.php photoplog pro file
find this
Code:
$db->query_write("UPDATE photoplog_catcounts
above that add this
Code:
$db->query_write("
UPDATE " . TABLE_PREFIX . $vbulletin->options['vbbux_pointstable'] . "
SET
`" . $vbulletin->options['vbbux_pointsfield'] . "` = `" . $vbulletin->options['vbbux_pointsfield'] . "` + 2
WHERE userid = " . intval($photoplog_file_userid) . "
AND vbp_receivespoints = '1'
");
that's it, now if user upload 1 image to your photoplog he/she will get 2 vbplaza/vbbux points, you can change digit + 2 above as you like to other digit
you can integrate vbbux/vbplaza with another hack too just add code above in another hack file
be creative guys
