Version: , by ForYou
Developer Last Online: May 2010
Version: Unknown
Rating:
Released: 04-20-2006
Last Update: Never
Installs: 0
No support by the author.
Hello ,
There is problem with some users in my forum ,
they have alot of points in the bank some user have 92819.99532 point and the total points is 1999994.33 this points just for example , but the current points is -174.99 , I don't know why this - and the user can't enter the topic and cant view members information there is message told there is no points to do this ,
I hope there is understand and solve the problem ,
Regards
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
I too had this when a member tired to steal, he lost all his points and could not post anywhere, and lost a lot of permissions on the forum (hes a super MOD) Also i could not see his profile, i got the Not enough points to do tis" as well, why should i get that, i had 500k just in my pocket, not to metion the bank
This does need resolving though as i had to put him back in credit (it was -24567.87) thats just no good at all even a mod or super mod cant even post
I know this issue exists with vBookie. I could probably solve the issue in vBookie by changing the integration hooks to verify the amount will be correct.
But u also say it happened while playing the arcade? Which arcade?
It's never happened to my people playing the arcade only in VBookie. I thought maybe they didn't have the points withdrawn when they were betting but even when making sure that they have enough points withdrawn from the bank it still happens.
I found duplicated vBookie plugins when I was checking this issue, they where logically withdrawing double amount of points on bets, I just disabled/deleted the duplicates and apparently that fixed it for me.
I found duplicated vBookie plugins when I was checking this issue, they where logically withdrawing double amount of points on bets, I just disabled/deleted the duplicates and apparently that fixed it for me.
I just looked at mine and saw three. Is it supposed to look like this?
I have moved my site twice, I wonder if each time I moved servers it installed the plugin
The last two are identical..Here are three of the take user's cash:
Code:
// take the user's cash
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET vbbux=vbbux-$amount WHERE userid=" . $vbulletin->userinfo['userid']);
$cash = (int)$vbulletin->userinfo['vbbux'];
Code:
// take the user's cash
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET " . $vbulletin->options['vbbux_pointsfield'] . "=" . $vbulletin->options['vbbux_pointsfield'] . "-" . $amount . " WHERE userid=" . $vbulletin->userinfo['userid']);
$cash = (int)$vbulletin->userinfo[$vbulletin->options['vbbux_pointsfield']];
Code:
// take the user's cash
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET " . $vbulletin->options['vbbux_pointsfield'] . "=" . $vbulletin->options['vbbux_pointsfield'] . "-" . $amount . " WHERE userid=" . $vbulletin->userinfo['userid']);
$cash = (int)$vbulletin->userinfo[$vbulletin->options['vbbux_pointsfield']];