Quote:
Originally Posted by delux153
people tell command to add AP????
|
There is no
command to add (aeria) points to an account. You will have to run a query in your database:
Open SQL Server Management Studio, login and click on the button whose caption is something like "New Query". Afterwards you copy & paste the following lines and click on the execute button at the top
Code:
UPDATE PS_UserData.dbo.Users_Master
SET Points = (Points + x) -- Replace the 'x' with the amount of points
WHERE UserID = 'username' -- Enter the username here
As John already said, you should better use the search engine next time.
Cheers