PDA

View Full Version : How can i set all my users to specific point?


turkforum
06-30-2005, 04:31 AM
Right now, i am using vBulletin Version 3.0.7
And installed your latest version. It is great hack..

Now, i have about 55.000 members and their points way up..
how can i set my all members' points to 1.000.000 lets say?
is there a db code for this?

Link14716
06-30-2005, 05:52 AM
Right now, i am using vBulletin Version 3.0.7
And installed your latest version. It is great hack..

Now, i have about 55.000 members and their points way up..
how can i set my all members' points to 1.000.000 lets say?
is there a db code for this?
UPDATE user SET uttpoints=uttpoints+'X';

Change X to the amount of points (without the thousand seperator) you want to give.

turkforum
07-02-2005, 06:09 AM
this did not RESET the points to 100
it adds what ever they have 100 points.

please advice

Marco van Herwaarden
07-02-2005, 07:30 AM
Then use:
UPDATE user SET uttpoints=X;

turkforum
07-03-2005, 01:58 PM
thank you... :)