The Arcive of vBulletin Modifications Site. |
|
User Points in Nigative - Details »»
|
|||||||||||||||||||||||||
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
|
|||||||||||||||||||||||||
| Comments |
|
#2
|
|||
|
|||
|
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
|
|
#3
|
|||
|
|||
|
Yes, that was happend with me ,
need help please , |
|
#4
|
|||
|
|||
|
You're not the only one...I've had this happen 4 times in the last month...
The last time, the person was in the arcade playing, came back to post, and was in the negative. |
|
#5
|
|||
|
|||
|
Do u have vBookie installed?
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? -CMX |
|
#6
|
|||
|
|||
|
Hi CMX
Yes we do have vBookie installed!! |
|
#7
|
|||
|
|||
|
I'm gonna look into the vBookie issue soon and see if I can fix it inside of the plugin integration that is included with vbPlaza to download.
-CMX |
|
#8
|
||||
|
||||
|
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.
|
|
#9
|
|||
|
|||
|
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.
|
|
#10
|
||||
|
||||
|
Quote:
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']];
|
![]() |
|
|