Change easy mode to ultimate mode in database

11/30/2012 14:20 cypherxxl#1
Hello.

Any1 knows where can i change the easy mode to ultimate mode in database of any Character?

Greetings.
11/30/2012 14:46 Philipp_#2
If you want to set all EM players to UM players try the following query:
Code:
UPDATE PS_GameData.dbo.Chars
SET Grow = 3
WHERE Grow = 0
If you want to set a single EM player to an UM player use this query:
Code:
UPDATE PS_GameData.dbo.Chars
SET Grow = 3
WHERE Grow = 0 AND CharName = 'charactername'
12/08/2012 02:07 markoyroy3#3
but how to update sir ? can you show me ? PLEASE.
12/08/2012 03:53 JohnHeatz#4
#Moved to the right section

Quote:
Originally Posted by markoyroy3 View Post
but how to update sir ? can you show me ? PLEASE.
Just by running the queries shown above in your database