Not sure if anyone else is getting a error when making a vbookie event. If any gets a error this is how i fixed it..
OK log into admincp goto Plugins & Products --> Plugin Manager --> Product : Nexia's Points System - vBookie Integration --> Do Charity - Apply "Give to Poor" setting -- click on the edit and replace with the code below.. only problem i have so far..
Code:
# if members have less than the "Give to Poor" setting, they receive that amount as gift.
$vbulletin->db->query_write("
UPDATE " . TABLE_PREFIX . "user
SET nex_points_hand =" . $vbulletin->options['vbookiegivetopoor']
. " WHERE nex_points_hand < " . $vbulletin->options['vbookiegivetopoor']
);