Quote:
Originally Posted by dethfire
how do I keep lesanes cash amount for everyone upon install?
|
You have two options. The first is setting the Points Field (in uCash Options) to "storep". The seconds, which I'd recommend, is running this query.
[sql]UPDATE user SET uttpoints=uttpoints+storep;[/sql]
If everything goes well and you want to get rid of the redundant column in the user table, you can run this query afterwards.
[sql]ALTER TABLE user DROP storep;[/sql]