Hey can somone tell me how to make a permanent fix. Im making a shaiya server and when somone new spawns they start with a Star or 120k kills anyone know how i can fix that?
--Removes the default of 120k kills ALTER TABLE [PS_GameData].[dbo].[Chars] DROP CONSTRAINT DF_Chars_K1; --Adds the default of 0 kills ALTER TABLE [PS_GameData].[dbo].[Chars] ADD CONSTRAINT DF_Chars_K1 DEFAULT ((0)) FOR K1;