Set Level
Code:
USE PS_GameData
Update dbo.Chars Set Level = 60 Where CharName = [ToonNameHere]
Thats from the DataBase itself, if its with GM commands.....just look for the command, you have them all on your DataBase...
Set Kills
Code:
USE PS_GameData
Update dbo.Chars Set KillLevel = 200000 Where CharName = [ToonNameHere]
To
set your stats is the same kind of code:
Code:
USE PS_GameData
Update dbo.Chars Set [Stat to update] = 20000 Where CharName = [ToonNameHere]
Be sure that you keep it at that, taking into account that the values from the stats are smallint the maximum number that it will take is
32.767 so just keep it at 20k and you will be fine, because if you go above that number you will get an error on SQL