Quote:
Originally Posted by wcbryant
Is there any way (even a mysql query) to reset the system, clear all events, and start everyone from 500?
|
Assuming you are using "vCash":
[sql]
UPDATE user SET vbookie_cash=500;
DELETE FROM vbookie_news;
DELETE FROM vbookie_bets_placed;
DELETE FROM vbookie_item_options;
DELETE FROM vbookie_items;
DELETE FROM vbookie_groups;
[/sql]
You'll need to add the table prefix if you're using that, of course.