you must search at the PS_GameData -> dbo.chars go modify mode then to k1 -4 and look where is the 120000 kills change to 0.
Thatīs it
Thatīs it
That just changes the characters kills its not a permanent solution, Is there anyway to change ever new characters kills to 0 ?Quote:
PS_GameData -> dbo.chars go modify mode then to k1 -4 and look where is the 120000 kills change to 0
You should be able to avoid that situation by checking the "Prevent saving changes that require table recreation" option here:Quote:
I know this thread is ancient and the last post is a month old, but I came across because I also had the starting kills at 120k. Im using sql 2005 standard edition, and there was no modify mode. There was however an edit mode, but edit mode is just like scripting the table to a new sql command editor.
You can easily change the default of k1 back to 0, however you still need to execute the sql script. This technically, and practically, can not be done because you are trying to create a table that already exists.
If you have not fixed this prior to letting people on your server, then i believe a backup of all characters in your db is going to be required. This is because, you would have to add a DROP TABLE PS_GameData.dbo.Chars a line above.the CREATE TABLE command, thus eliminating all data in the table. After creating another character, the starting kills were successfully back to 0.
Replace:
GO
CREATE TABLE [dbo].[Chars]
With
GO
DROP TABLE PS_GamaData.dbo.Chars
CREATE TABLE [dbo].[Chars]
Im only doing a test server so I only wiped my own 1 toon. No big deal if your still testing, however doing this after people are on your server could be a bigger task than your looking forward to.